Current Path : /storage/v11800/weinfluence-new/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/weinfluence-new/.db.sql
-- MariaDB dump 10.19  Distrib 10.6.9-MariaDB, for debian-linux-gnu (aarch64)
--
-- Host: localhost    Database: weinfluence-newdb
-- ------------------------------------------------------
-- Server version	10.6.9-MariaDB-1:10.6.9+maria~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 utf8 */;
/*!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_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=415 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_actions`
--

LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (414,'action_scheduler/migration_hook','pending','2023-07-21 06:25:31','2023-07-21 06:25:31','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1689920731;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1689920731;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_claims`
--

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

--
-- Table structure for table `wp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_groups`
--

LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_logs`
--

LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (1,414,'action created','2023-07-21 06:24:31','2023-07-21 06:24:31');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2022-09-19 20:14:55','2022-09-19 20:14:55','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `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 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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_ff_scheduled_actions`
--

DROP TABLE IF EXISTS `wp_ff_scheduled_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ff_scheduled_actions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `origin_id` bigint(20) unsigned DEFAULT NULL,
  `feed_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'submission_action',
  `status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `note` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `retry_count` int(10) unsigned DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ff_scheduled_actions`
--

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

--
-- Table structure for table `wp_fluentform_entry_details`
--

DROP TABLE IF EXISTS `wp_fluentform_entry_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_fluentform_entry_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `submission_id` bigint(20) unsigned DEFAULT NULL,
  `field_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sub_field_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_fluentform_entry_details`
--

LOCK TABLES `wp_fluentform_entry_details` WRITE;
/*!40000 ALTER TABLE `wp_fluentform_entry_details` DISABLE KEYS */;
INSERT INTO `wp_fluentform_entry_details` VALUES (1,3,1,'names','first_name','dhiraj'),(2,3,1,'names','last_name','kumar'),(3,3,1,'email','','dhiraj@whatthehell.cop'),(4,3,1,'subject','','kfjdljf'),(5,3,1,'message','','dkfjkldjfkas'),(6,3,2,'names','first_name','Dhiraj'),(7,3,2,'names','last_name','Kumar'),(8,3,2,'email','','dhiraj@whatthehell.co'),(9,3,2,'subject','','This is test'),(10,3,2,'message','','hi'),(11,3,3,'names','first_name','Dhiraj'),(12,3,3,'names','last_name','Kumar'),(13,3,3,'email','','dhiraj@whatthehell.co'),(14,3,3,'subject','','kfkdjfdjf'),(15,3,3,'message','','kfdfjldk'),(16,3,4,'names','first_name','dhiraj'),(17,3,4,'names','last_name','fjjfksj'),(18,3,4,'email','','dhiraj@whatthehell.co'),(19,3,4,'subject','','dkfjdkljf'),(20,3,4,'message','','fkljdskfjld'),(21,3,5,'names','first_name','Dhriaj'),(22,3,5,'email','','dhiraj@whatthehell.co'),(23,3,5,'subject','','dfdkfjlkqjflkdsjf'),(24,3,5,'message','','jfkdjfkldj');
/*!40000 ALTER TABLE `wp_fluentform_entry_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_fluentform_form_analytics`
--

DROP TABLE IF EXISTS `wp_fluentform_form_analytics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_fluentform_form_analytics` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `source_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `platform` char(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `browser` char(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip` char(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `count` int(11) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=515 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_fluentform_form_analytics`
--

LOCK TABLES `wp_fluentform_form_analytics` WRITE;
/*!40000 ALTER TABLE `wp_fluentform_form_analytics` DISABLE KEYS */;
INSERT INTO `wp_fluentform_form_analytics` VALUES (377,3,0,'','Windows','Chrome',NULL,NULL,'176.74.192.85',2,'2023-02-18 01:27:13'),(378,3,0,'','Chrome OS','unknown',NULL,NULL,'205.210.31.35',1,'2023-02-18 04:55:14'),(379,3,0,'','unknown','unknown',NULL,NULL,'205.210.31.161',1,'2023-02-18 15:09:56'),(380,3,0,'','unknown','GoogleBot',NULL,NULL,'66.249.68.40',3,'2023-02-19 04:53:12'),(381,3,0,'','unknown','unknown',NULL,NULL,'154.12.227.174',2,'2023-02-19 08:36:11'),(382,3,0,'','Apple','Chrome',NULL,NULL,'182.66.82.11',4,'2023-02-19 23:02:32'),(383,3,0,'','Windows','Opera',NULL,NULL,'99.81.216.206',1,'2023-02-20 07:20:13'),(384,3,0,'','Windows','Chrome',NULL,NULL,'66.249.66.82',1,'2023-02-21 11:18:01'),(385,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.147',2,'2023-02-21 13:36:58'),(386,3,0,'','Android','Chrome',NULL,NULL,'66.249.68.48',5,'2023-02-21 23:09:05'),(387,3,0,'','unknown','GoogleBot',NULL,NULL,'66.249.68.46',4,'2023-02-22 22:10:28'),(388,3,0,'','Android','Chrome',NULL,NULL,'66.249.68.42',4,'2023-02-23 20:25:47'),(389,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.3',3,'2023-02-24 04:23:22'),(390,3,0,'','unknown','Mozilla',NULL,NULL,'167.94.138.60',1,'2023-02-24 13:35:41'),(391,3,0,'','Chrome OS','unknown',NULL,NULL,'198.235.24.21',1,'2023-02-24 15:20:05'),(392,3,0,'','unknown','unknown',NULL,NULL,'198.235.24.32',2,'2023-02-25 06:09:04'),(393,3,0,'','Apple','Chrome',NULL,NULL,'205.185.116.25',1,'2023-02-26 09:16:44'),(394,3,0,'','Windows','Chrome',NULL,NULL,'66.249.79.104',1,'2023-02-26 10:48:53'),(395,3,0,'','Windows','Chrome',NULL,NULL,'66.249.79.101',1,'2023-02-26 21:49:46'),(396,3,0,'','iPhone','iPhone',NULL,NULL,'93.158.91.183',1,'2023-02-27 00:29:15'),(397,3,0,'','Linux','Chrome',NULL,NULL,'199.244.88.226',1,'2023-02-27 17:19:07'),(398,3,0,'','Windows','Chrome',NULL,NULL,'43.153.57.3',1,'2023-02-27 19:36:24'),(399,3,0,'','Android','Chrome',NULL,NULL,'152.58.121.187',2,'2023-02-28 05:06:15'),(400,3,0,'','unknown','unknown',NULL,NULL,'205.210.31.157',3,'2023-02-28 05:28:07'),(401,3,0,'','Android','Chrome',NULL,NULL,'49.36.180.172',2,'2023-02-28 06:51:40'),(402,3,0,'','Chrome OS','unknown',NULL,NULL,'198.235.24.17',1,'2023-03-01 08:17:46'),(403,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.135',1,'2023-03-01 11:45:04'),(404,3,0,'','Windows','Chrome',NULL,NULL,'185.181.60.189',1,'2023-03-02 10:17:23'),(405,3,0,'','Android','Chrome',NULL,NULL,'49.36.187.72',1,'2023-03-02 14:23:35'),(406,3,0,'','Chrome OS','unknown',NULL,NULL,'198.235.24.168',1,'2023-03-03 04:15:42'),(407,3,0,'','unknown','unknown',NULL,NULL,'74.84.150.150',1,'2023-03-03 19:43:08'),(408,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.60',1,'2023-03-04 01:43:10'),(409,3,0,'','unknown','Mozilla',NULL,NULL,'87.236.176.50',1,'2023-03-06 03:56:49'),(410,3,0,'','unknown','GoogleBot',NULL,NULL,'178.159.37.63',9,'2023-03-06 06:01:40'),(411,3,0,'','Linux','Chrome',NULL,NULL,'216.251.130.74',1,'2023-03-06 12:44:54'),(412,3,0,'','unknown','Mozilla',NULL,NULL,'34.245.77.175',1,'2023-03-07 13:45:55'),(413,3,0,'','Chrome OS','unknown',NULL,NULL,'205.210.31.49',1,'2023-03-07 19:24:12'),(414,3,0,'','Windows','Firefox',NULL,NULL,'93.158.90.71',1,'2023-03-07 21:30:10'),(415,3,0,'','Apple','Chrome',NULL,NULL,'54.201.113.85',1,'2023-03-08 08:41:06'),(416,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.158',1,'2023-03-09 05:58:29'),(417,3,0,'','unknown','unknown',NULL,NULL,'68.69.184.202',1,'2023-03-09 10:58:01'),(418,3,0,'','Chrome OS','unknown',NULL,NULL,'198.235.24.53',1,'2023-03-09 18:00:23'),(419,3,0,'','Windows','Chrome',NULL,NULL,'111.7.100.25',1,'2023-03-10 15:29:39'),(420,3,0,'','Windows','Chrome',NULL,NULL,'35.208.51.229',1,'2023-03-11 00:56:10'),(421,3,0,'','unknown','GoogleBot',NULL,NULL,'23.83.231.142',1,'2023-03-11 04:15:43'),(422,3,0,'','Windows','Chrome',NULL,NULL,'66.249.66.44',1,'2023-03-11 06:27:42'),(423,3,0,'','unknown','unknown',NULL,NULL,'205.210.31.37',1,'2023-03-11 12:49:26'),(424,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.21',1,'2023-03-11 20:44:28'),(425,3,0,'','unknown','Mozilla',NULL,NULL,'87.236.176.31',1,'2023-03-12 13:17:54'),(426,3,0,'','Linux','Chrome',NULL,NULL,'54.198.229.33',4,'2023-03-12 15:36:55'),(427,3,0,'','Windows','Chrome',NULL,NULL,'43.130.147.119',1,'2023-03-13 15:27:48'),(428,3,0,'','unknown','Mozilla',NULL,NULL,'167.248.133.189',1,'2023-03-14 01:06:22'),(429,3,0,'','unknown','Mozilla',NULL,NULL,'167.248.133.37',1,'2023-03-14 01:43:52'),(430,3,0,'','Android','Chrome',NULL,NULL,'66.249.64.32',1,'2023-03-14 23:37:33'),(431,3,0,'','Android','Chrome',NULL,NULL,'66.249.64.63',1,'2023-03-15 03:17:48'),(432,3,0,'','unknown','unknown',NULL,NULL,'51.158.118.231',1,'2023-03-15 14:31:49'),(433,3,0,'','Windows','Chrome',NULL,NULL,'109.239.58.107',1,'2023-03-17 01:12:57'),(434,3,0,'','Chrome OS','unknown',NULL,NULL,'198.235.24.20',1,'2023-03-17 17:16:42'),(435,3,0,'','unknown','unknown',NULL,NULL,'198.235.24.42',1,'2023-03-17 23:11:43'),(436,3,0,'','iPhone','iPhone',NULL,NULL,'51.81.167.146',2,'2023-03-18 14:23:15'),(437,3,0,'','Windows','Chrome',NULL,NULL,'195.211.77.140',1,'2023-03-18 14:23:15'),(438,3,0,'','Linux','Chrome',NULL,NULL,'65.154.226.166',1,'2023-03-18 14:23:48'),(439,3,0,'','Linux','Firefox',NULL,NULL,'179.43.169.181',2,'2023-03-18 14:27:01'),(440,3,0,'','Android','Android',NULL,NULL,'133.242.140.127',1,'2023-03-18 16:23:14'),(441,3,0,'','Apple','Firefox',NULL,NULL,'34.77.157.86',1,'2023-03-19 03:01:41'),(442,3,0,'https://weinfluence-new.in8.cdn-alpha.com/','unknown','unknown',NULL,NULL,'15.207.252.102',12,'2023-03-19 15:50:13'),(443,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.157',1,'2023-03-19 18:36:50'),(444,3,0,'','unknown','unknown',NULL,NULL,'54.78.8.161',1,'2023-03-19 19:32:48'),(445,3,0,'','Linux','Firefox',NULL,NULL,'162.214.112.108',1,'2023-03-20 07:13:47'),(446,3,0,'','Android','Chrome',NULL,NULL,'66.249.66.45',1,'2023-03-20 10:44:43'),(447,3,0,'','Apple','Chrome',NULL,NULL,'135.181.86.247',1,'2023-03-20 16:28:53'),(448,3,0,'','unknown','unknown',NULL,NULL,'198.235.24.7',9,'2023-03-21 19:05:47'),(449,3,0,'','unknown','GoogleBot',NULL,NULL,'66.249.66.7',1,'2023-03-22 19:51:15'),(450,3,0,'','Android','Chrome',NULL,NULL,'66.249.66.43',1,'2023-03-22 23:58:57'),(451,3,0,'','unknown','unknown',NULL,NULL,'207.241.236.61',1,'2023-03-23 02:39:07'),(452,3,0,'','Windows','Opera',NULL,NULL,'52.51.218.89',1,'2023-03-23 08:37:00'),(453,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.120',1,'2023-04-02 08:25:51'),(454,3,0,'','unknown','unknown',NULL,NULL,'15.207.252.102',31,'2023-04-03 05:37:34'),(455,3,0,'https://my.nestify.io/','Chrome OS','Chrome',NULL,NULL,'49.36.187.72',1,'2023-04-03 11:03:56'),(456,3,0,'','unknown','unknown',NULL,NULL,'198.235.24.4',4,'2023-04-04 01:02:12'),(457,3,0,'','unknown','unknown',NULL,NULL,'103.108.229.61',1,'2023-04-04 11:38:48'),(458,3,0,'','iPhone','iPhone',NULL,NULL,'93.158.90.74',1,'2023-04-04 12:05:59'),(459,3,0,'','Linux','Firefox',NULL,NULL,'51.255.62.6',1,'2023-04-04 20:04:41'),(460,3,0,'','Linux','Firefox',NULL,NULL,'51.254.49.106',1,'2023-04-05 01:37:16'),(461,3,0,'','Android','Chrome',NULL,NULL,'5.78.102.205',1,'2023-04-05 20:12:23'),(462,3,0,'','Apple','Chrome',NULL,NULL,'35.167.229.159',1,'2023-04-05 23:03:29'),(463,3,0,'','unknown','Mozilla',NULL,NULL,'87.236.176.179',1,'2023-04-06 00:04:41'),(464,3,0,'','Android','Chrome',NULL,NULL,'66.249.68.50',1,'2023-04-06 01:10:40'),(465,3,0,'','unknown','unknown',NULL,NULL,'173.252.83.6',1,'2023-04-06 11:32:22'),(466,3,0,'','Android','Chrome',NULL,NULL,'66.249.72.139',1,'2023-04-07 04:54:30'),(467,3,0,'','Android','Chrome',NULL,NULL,'128.140.12.240',1,'2023-04-07 10:58:56'),(468,3,0,'','Chrome OS','unknown',NULL,NULL,'205.210.31.44',1,'2023-04-07 12:24:15'),(469,3,0,'','unknown','Mozilla',NULL,NULL,'167.248.133.36',1,'2023-04-07 21:03:52'),(470,3,0,'','unknown','Mozilla',NULL,NULL,'167.248.133.52',2,'2023-04-07 21:46:54'),(471,3,0,'','unknown','Mozilla',NULL,NULL,'3.253.126.199',1,'2023-04-08 00:18:54'),(472,3,0,'','unknown','Mozilla',NULL,NULL,'167.248.133.125',1,'2023-04-08 00:33:28'),(473,3,0,'','unknown','unknown',NULL,NULL,'198.235.24.60',1,'2023-04-08 03:48:38'),(474,3,0,'','Linux','Chrome',NULL,NULL,'205.169.39.63',1,'2023-04-08 14:04:20'),(475,3,0,'','Linux','Chrome',NULL,NULL,'65.154.226.170',1,'2023-04-08 14:04:21'),(476,3,0,'','Linux','Chrome',NULL,NULL,'65.154.226.167',1,'2023-04-08 14:49:44'),(477,3,0,'','Windows','Opera',NULL,NULL,'99.81.172.94',1,'2023-04-08 22:48:59'),(478,3,0,'','unknown','unknown',NULL,NULL,'169.150.201.10',1,'2023-04-09 02:07:05'),(479,3,0,'','Android','Chrome',NULL,NULL,'66.249.68.56',3,'2023-04-09 02:14:58'),(480,3,0,'','Android','Chrome',NULL,NULL,'66.249.68.54',1,'2023-04-09 12:49:47'),(481,3,0,'','unknown','unknown',NULL,NULL,'146.70.166.232',1,'2023-04-09 16:17:44'),(482,3,0,'','Android','Chrome',NULL,NULL,'66.249.64.71',1,'2023-04-09 21:15:09'),(483,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.17',1,'2023-04-10 07:06:01'),(484,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.125',1,'2023-04-12 23:20:01'),(485,3,0,'','unknown','unknown',NULL,NULL,'198.235.24.160',3,'2023-04-13 06:42:44'),(486,3,0,'','Android','Chrome',NULL,NULL,'93.158.90.65',1,'2023-04-13 12:28:05'),(487,3,0,'','Windows','Chrome',NULL,NULL,'20.55.57.137',1,'2023-04-13 21:06:26'),(488,3,0,'','Android','Chrome',NULL,NULL,'66.249.65.61',1,'2023-04-14 03:26:32'),(489,3,0,'','unknown','unknown',NULL,NULL,'198.235.24.157',1,'2023-04-14 06:02:41'),(490,3,0,'','Android','Chrome',NULL,NULL,'66.249.65.46',1,'2023-04-14 06:20:31'),(491,3,0,'','Windows','Chrome',NULL,NULL,'162.55.125.123',1,'2023-04-14 11:10:57'),(492,3,0,'','Apple','Chrome',NULL,NULL,'54.184.239.170',1,'2023-04-14 22:04:42'),(493,3,0,'','Linux','Chrome',NULL,NULL,'43.128.105.55',1,'2023-04-15 00:59:22'),(494,3,0,'','unknown','unknown',NULL,NULL,'198.235.24.144',1,'2023-04-15 12:28:21'),(495,3,0,'','Windows','Chrome',NULL,NULL,'193.235.141.143',1,'2023-04-15 15:54:38'),(496,3,0,'','unknown','Mozilla',NULL,NULL,'87.236.176.122',1,'2023-04-16 06:34:02'),(497,3,0,'','unknown','unknown',NULL,NULL,'205.210.31.160',1,'2023-04-17 00:31:20'),(498,3,0,'','Android','Chrome',NULL,NULL,'66.249.65.43',1,'2023-04-17 16:28:01'),(499,3,0,'','Apple','Chrome',NULL,NULL,'104.167.221.206',1,'2023-04-18 02:17:15'),(500,3,0,'https://my.nestify.io/','Chrome OS','Chrome',NULL,NULL,'49.36.180.212',1,'2023-04-18 02:45:21'),(501,3,0,'https://my.nestify.io/','Windows','Firefox',NULL,NULL,'255.18.231.121',1,'2023-04-18 04:53:00'),(502,3,0,'https://my.nestify.io/','Chrome OS','Chrome',NULL,NULL,'172.69.94.38, 1',1,'2023-07-21 00:54:33'),(503,3,0,'','Windows','Internet Explorer',NULL,NULL,'172.70.91.67, 1',1,'2023-09-08 23:31:59'),(504,3,0,'','Windows','Internet Explorer',NULL,NULL,'172.71.242.168,',1,'2023-09-09 23:54:57'),(505,3,0,'','Windows','Chrome',NULL,NULL,'172.70.90.193,',1,'2023-10-10 00:36:04'),(506,3,0,'','Apple','Safari',NULL,NULL,'172.70.86.44, 1',1,'2023-11-09 01:12:51'),(507,3,0,'','Windows','Internet Explorer',NULL,NULL,'172.69.195.174,',1,'2023-12-09 01:36:18'),(508,3,0,'','Windows','Internet Explorer',NULL,NULL,'172.71.242.76,',1,'2024-01-09 02:04:00'),(509,3,0,'','Windows','Internet Explorer',NULL,NULL,'172.71.178.223,',1,'2024-02-08 03:02:58'),(510,3,0,'','Windows','Firefox',NULL,NULL,'172.69.195.70,',1,'2024-03-09 03:12:55'),(511,3,0,'','Windows','Opera',NULL,NULL,'172.69.194.130,',1,'2024-03-10 03:30:41'),(512,3,0,'','Windows','Safari',NULL,NULL,'172.70.85.80, 1',1,'2024-03-11 04:10:37'),(513,3,0,'','Windows','Internet Explorer',NULL,NULL,'172.70.163.71,',1,'2024-04-10 08:11:16'),(514,3,0,'','Windows','Internet Explorer',NULL,NULL,'172.70.90.136,',1,'2024-05-10 08:12:29');
/*!40000 ALTER TABLE `wp_fluentform_form_analytics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_fluentform_form_meta`
--

DROP TABLE IF EXISTS `wp_fluentform_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_fluentform_form_meta` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_fluentform_form_meta`
--

LOCK TABLES `wp_fluentform_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_fluentform_form_meta` DISABLE KEYS */;
INSERT INTO `wp_fluentform_form_meta` VALUES (1,1,'template_name','basic_contact_form'),(2,1,'formSettings','{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"Thank you for your message. We will get in touch with you shortly\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"selectedDays\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"],\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\"},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"cssClassName\":\"\",\"asteriskPlacement\":\"asterisk-right\"},\"delete_entry_on_submission\":\"no\",\"appendSurveyResult\":{\"enabled\":false,\"showLabel\":false,\"showCount\":false}}'),(3,1,'advancedValidationSettings','{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":\"\",\"operator\":\"=\",\"value\":\"\"}],\"error_message\":\"\",\"validation_type\":\"fail_on_condition_met\"}'),(4,1,'double_optin_settings','{\"status\":\"no\",\"confirmation_message\":\"Please check your email inbox to confirm this submission\",\"email_body_type\":\"global\",\"email_subject\":\"Please confirm your form submission\",\"email_body\":\"<h2>Please Confirm Your Submission</h2><p>&nbsp;</p><p style=\"text-align: center;\"><a style=\"color: #ffffff; background-color: #454545; font-size: 16px; border-radius: 5px; text-decoration: none; font-weight: normal; font-style: normal; padding: 0.8rem 1rem; border-color: #0072ff;\" href=\"#confirmation_url#\">Confirm Submission</a></p><p>&nbsp;</p><p>If you received this email by mistake, simply delete it. Your form submission won\'t proceed if you don\'t click the confirmation link above.</p>\",\"email_field\":\"\",\"skip_if_logged_in\":\"yes\",\"skip_if_fc_subscribed\":\"no\"}'),(5,2,'template_name','inline_subscription'),(6,2,'formSettings','{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"Thank you for your message. We will get in touch with you shortly\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\"},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"asteriskPlacement\":\"asterisk-right\"}}'),(7,2,'notifications','{\"name\":\"Admin Notification Email\",\"sendTo\":{\"type\":\"email\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] New Form Submission\",\"message\":\"<p>{all_data}<\\/p> <p>This form submitted at: {embed_post.permalink}<\\/p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":false,\"email_template\":\"\"}'),(8,2,'step_data_persistency_status','no'),(9,2,'_primary_email_field','email'),(10,3,'formSettings','{\"confirmation\":{\"redirectTo\":\"customUrl\",\"messageToShow\":\"Thank you for your message. We will get in touch with you shortly\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":\"{pdf.download_link.13}\",\"enable_query_string\":\"no\",\"redirectMessage\":\"<p>Download your card<\\/p>\"},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"selectedDays\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"],\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\"},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"cssClassName\":\"\",\"asteriskPlacement\":\"asterisk-right\"},\"delete_entry_on_submission\":\"no\",\"appendSurveyResult\":{\"enabled\":false,\"showLabel\":false,\"showCount\":false}}'),(11,3,'notifications','{\"name\":\"Admin Notification Email\",\"sendTo\":{\"type\":\"email\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] New Form Submission\",\"message\":\"<p>{all_data}<\\/p>\\n<p>This form submitted at: {embed_post.permalink}<\\/p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":true,\"email_template\":\"\",\"attachments\":[],\"media_attachments\":[],\"pdf_attachments\":[\"13\"],\"feed_trigger_event\":\"payment_success\"}'),(12,3,'template_name','basic_contact_form'),(13,3,'_pdf_feeds','{\"name\":\"Congress Naagrik Adhikaar Patra\",\"template_key\":\"general\",\"settings\":{\"header\":\"<img src=\\\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Artboard.png\\\" alt=\\\"header\\\">\",\"footer\":\"<table width=\\\"100%\\\"><tr><td width=\\\"50%\\\">{DATE j-m-Y}<\\/td><td width=\\\"50%\\\"  style=\\\"text-align: right;\\\" align=\\\"right\\\">{PAGENO}\\/{nbpg}<\\/td><\\/tr><\\/table>\",\"body\":\"{all_data}\",\"shortcode\":\"{pdf.download_link.13}\"},\"appearance\":{\"paper_size\":\"A5\",\"orientation\":\"L\",\"font\":\"default\",\"font_size\":\"14\",\"font_color\":\"#323232\",\"accent_color\":\"#989797\",\"heading_color\":\"#000000\",\"language_direction\":\"ltr\"}}'),(14,3,'_primary_email_field','email'),(15,1,'_pdf_feeds','{\"name\":\"General\",\"template_key\":\"general\",\"settings\":{\"header\":\"<h2>PDF Title<\\/h2>\",\"footer\":\"<table width=\\\"100%\\\"><tr><td width=\\\"50%\\\">{DATE j-m-Y}<\\/td><td width=\\\"50%\\\"  style=\\\"text-align: right;\\\" align=\\\"right\\\">{PAGENO}\\/{nbpg}<\\/td><\\/tr><\\/table>\",\"body\":\"{all_data}\"},\"appearance\":{\"paper_size\":\"A4\",\"orientation\":\"P\",\"font\":\"default\",\"font_size\":\"14\",\"font_color\":\"#323232\",\"accent_color\":\"#989797\",\"heading_color\":\"#000000\",\"language_direction\":\"ltr\"}}'),(16,3,'advancedValidationSettings','{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":\"\",\"operator\":\"=\",\"value\":\"\"}],\"error_message\":\"\",\"validation_type\":\"fail_on_condition_met\"}'),(17,3,'_total_views','514');
/*!40000 ALTER TABLE `wp_fluentform_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_fluentform_forms`
--

DROP TABLE IF EXISTS `wp_fluentform_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_fluentform_forms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT 'Draft',
  `appearance_settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_fields` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `has_payment` tinyint(1) NOT NULL DEFAULT 0,
  `type` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `conditions` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_fluentform_forms`
--

LOCK TABLES `wp_fluentform_forms` WRITE;
/*!40000 ALTER TABLE `wp_fluentform_forms` DISABLE KEYS */;
INSERT INTO `wp_fluentform_forms` VALUES (1,'Contact Form Demo','published',NULL,'{\"fields\":[{\"index\":0,\"element\":\"input_name\",\"attributes\":{\"name\":\"names\",\"data-type\":\"name-element\"},\"settings\":{\"container_class\":\"\",\"admin_field_label\":\"Name\",\"conditional_logics\":[]},\"fields\":{\"first_name\":{\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"first_name\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"First Name\"},\"settings\":{\"container_class\":\"\",\"label\":\"First Name\",\"help_message\":\"\",\"visible\":true,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"template\":\"inputText\"}},\"middle_name\":{\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"middle_name\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"\",\"required\":false},\"settings\":{\"container_class\":\"\",\"label\":\"Middle Name\",\"help_message\":\"\",\"error_message\":\"\",\"visible\":false,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"template\":\"inputText\"}},\"last_name\":{\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"last_name\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Last Name\",\"required\":false},\"settings\":{\"container_class\":\"\",\"label\":\"Last Name\",\"help_message\":\"\",\"error_message\":\"\",\"visible\":true,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"template\":\"inputText\"}}},\"editor_options\":{\"title\":\"Name Fields\",\"element\":\"name-fields\",\"icon_class\":\"ff-edit-name\",\"template\":\"nameFields\"},\"uniqElKey\":\"el_1570866006692\"},{\"index\":1,\"element\":\"input_email\",\"attributes\":{\"type\":\"email\",\"name\":\"email\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Email Address\"},\"settings\":{\"container_class\":\"\",\"label\":\"Email\",\"label_placement\":\"\",\"help_message\":\"\",\"admin_field_label\":\"\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"},\"email\":{\"value\":true,\"message\":\"This field must contain a valid email\"}},\"conditional_logics\":[]},\"editor_options\":{\"title\":\"Email Address\",\"icon_class\":\"ff-edit-email\",\"template\":\"inputText\"},\"uniqElKey\":\"el_1570866012914\"},{\"index\":2,\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"subject\",\"value\":\"\",\"class\":\"\",\"placeholder\":\"Subject\"},\"settings\":{\"container_class\":\"\",\"label\":\"Subject\",\"label_placement\":\"\",\"admin_field_label\":\"Subject\",\"help_message\":\"\",\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]}},\"editor_options\":{\"title\":\"Simple Text\",\"icon_class\":\"ff-edit-text\",\"template\":\"inputText\"},\"uniqElKey\":\"el_1570878958648\"},{\"index\":3,\"element\":\"textarea\",\"attributes\":{\"name\":\"message\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Your Message\",\"rows\":4,\"cols\":2},\"settings\":{\"container_class\":\"\",\"label\":\"Your Message\",\"admin_field_label\":\"\",\"label_placement\":\"\",\"help_message\":\"\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"}},\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]}},\"editor_options\":{\"title\":\"Text Area\",\"icon_class\":\"ff-edit-textarea\",\"template\":\"inputTextarea\"},\"uniqElKey\":\"el_1570879001207\"}],\"submitButton\":{\"uniqElKey\":\"el_1524065200616\",\"element\":\"button\",\"attributes\":{\"type\":\"submit\",\"class\":\"\"},\"settings\":{\"align\":\"left\",\"button_style\":\"default\",\"container_class\":\"\",\"help_message\":\"\",\"background_color\":\"#409EFF\",\"button_size\":\"md\",\"color\":\"#ffffff\",\"button_ui\":{\"type\":\"default\",\"text\":\"Submit Form\",\"img_url\":\"\"}},\"editor_options\":{\"title\":\"Submit Button\"}}}',0,'',NULL,1,'2022-09-22 04:37:47','2022-09-22 04:37:47'),(2,'Subscription Form','published',NULL,'{\"fields\":[{\"index\":1,\"element\":\"container\",\"attributes\":[],\"settings\":{\"container_class\":\"\",\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]}},\"columns\":[{\"fields\":[{\"index\":1,\"element\":\"input_email\",\"attributes\":{\"type\":\"email\",\"name\":\"email\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Your Email Address\"},\"settings\":{\"container_class\":\"\",\"label\":\"\",\"label_placement\":\"\",\"help_message\":\"\",\"admin_field_label\":\"Email\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"},\"email\":{\"value\":true,\"message\":\"This field must contain a valid email\"}},\"conditional_logics\":[],\"is_unique\":\"no\",\"unique_validation_message\":\"Email address need to be unique.\"},\"editor_options\":{\"title\":\"Email Address\",\"icon_class\":\"ff-edit-email\",\"template\":\"inputText\"},\"uniqElKey\":\"el_16231279686950.8779857923682932\"}]},{\"fields\":[{\"index\":15,\"element\":\"custom_submit_button\",\"attributes\":{\"class\":\"\",\"type\":\"submit\"},\"settings\":{\"button_style\":\"\",\"button_size\":\"md\",\"align\":\"left\",\"container_class\":\"\",\"current_state\":\"normal_styles\",\"background_color\":\"\",\"color\":\"\",\"hover_styles\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#409EFF\",\"color\":\"#409EFF\",\"borderRadius\":\"\",\"minWidth\":\"100%\"},\"normal_styles\":{\"backgroundColor\":\"#409EFF\",\"borderColor\":\"#409EFF\",\"color\":\"#ffffff\",\"borderRadius\":\"\",\"minWidth\":\"100%\"},\"button_ui\":{\"text\":\"Subscribe\",\"type\":\"default\",\"img_url\":\"\"},\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]}},\"editor_options\":{\"title\":\"Custom Submit Button\",\"icon_class\":\"dashicons dashicons-arrow-right-alt\",\"template\":\"customButton\"},\"uniqElKey\":\"el_16231279798380.5947400167493171\"}]}],\"editor_options\":{\"title\":\"Two Column Container\",\"icon_class\":\"ff-edit-column-2\"},\"uniqElKey\":\"el_16231279284710.40955091024524304\"}],\"submitButton\":{\"uniqElKey\":\"el_1524065200616\",\"element\":\"button\",\"attributes\":{\"type\":\"submit\",\"class\":\"\"},\"settings\":{\"align\":\"left\",\"button_style\":\"default\",\"container_class\":\"\",\"help_message\":\"\",\"background_color\":\"#409EFF\",\"button_size\":\"md\",\"color\":\"#ffffff\",\"button_ui\":{\"type\":\"default\",\"text\":\"Subscribe\",\"img_url\":\"\"}},\"editor_options\":{\"title\":\"Submit Button\"}}}',0,'form',NULL,1,'2022-09-22 04:37:47','2022-09-22 04:37:47'),(3,'Contact Form Demo (#3)','published',NULL,'{\"fields\":[{\"index\":0,\"element\":\"input_name\",\"attributes\":{\"name\":\"names\",\"data-type\":\"name-element\"},\"settings\":{\"container_class\":\"\",\"admin_field_label\":\"Name\",\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]},\"label_placement\":\"\"},\"fields\":{\"first_name\":{\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"first_name\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"First Name\"},\"settings\":{\"container_class\":\"\",\"label\":\"First Name\",\"help_message\":\"\",\"visible\":true,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"template\":\"inputText\"}},\"middle_name\":{\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"middle_name\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"\",\"required\":false},\"settings\":{\"container_class\":\"\",\"label\":\"Middle Name\",\"help_message\":\"\",\"error_message\":\"\",\"visible\":false,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"template\":\"inputText\"}},\"last_name\":{\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"last_name\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Last Name\",\"required\":false},\"settings\":{\"container_class\":\"\",\"label\":\"Last Name\",\"help_message\":\"\",\"error_message\":\"\",\"visible\":true,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"template\":\"inputText\"}}},\"editor_options\":{\"title\":\"Name Fields\",\"element\":\"name-fields\",\"icon_class\":\"ff-edit-name\",\"template\":\"nameFields\"},\"uniqElKey\":\"el_1570866006692\"},{\"index\":1,\"element\":\"input_email\",\"attributes\":{\"type\":\"email\",\"name\":\"email\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Email Address\"},\"settings\":{\"container_class\":\"\",\"label\":\"Email\",\"label_placement\":\"\",\"help_message\":\"\",\"admin_field_label\":\"\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"},\"email\":{\"value\":true,\"message\":\"This field must contain a valid email\"}},\"conditional_logics\":[],\"is_unique\":\"no\",\"unique_validation_message\":\"Email address need to be unique.\",\"prefix_label\":\"\",\"suffix_label\":\"\"},\"editor_options\":{\"title\":\"Email Address\",\"icon_class\":\"ff-edit-email\",\"template\":\"inputText\"},\"uniqElKey\":\"el_1570866012914\"},{\"index\":2,\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"subject\",\"value\":\"\",\"class\":\"\",\"placeholder\":\"Subject\",\"maxlength\":\"\"},\"settings\":{\"container_class\":\"\",\"label\":\"Subject\",\"label_placement\":\"\",\"admin_field_label\":\"Subject\",\"help_message\":\"\",\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]},\"is_unique\":\"no\",\"unique_validation_message\":\"This field value need to be unique.\",\"prefix_label\":\"\",\"suffix_label\":\"\"},\"editor_options\":{\"title\":\"Simple Text\",\"icon_class\":\"ff-edit-text\",\"template\":\"inputText\"},\"uniqElKey\":\"el_1570878958648\"},{\"index\":3,\"element\":\"textarea\",\"attributes\":{\"name\":\"message\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Your Message\",\"rows\":4,\"cols\":2,\"maxlength\":\"\"},\"settings\":{\"container_class\":\"\",\"label\":\"Your Message\",\"admin_field_label\":\"\",\"label_placement\":\"\",\"help_message\":\"\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"}},\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]}},\"editor_options\":{\"title\":\"Text Area\",\"icon_class\":\"ff-edit-textarea\",\"template\":\"inputTextarea\"},\"uniqElKey\":\"el_1570879001207\"}],\"submitButton\":{\"uniqElKey\":\"el_1524065200616\",\"element\":\"button\",\"attributes\":{\"type\":\"submit\",\"class\":\"\"},\"settings\":{\"align\":\"left\",\"button_style\":\"default\",\"container_class\":\"\",\"help_message\":\"\",\"background_color\":\"#409EFF\",\"button_size\":\"md\",\"color\":\"#ffffff\",\"button_ui\":{\"type\":\"default\",\"text\":\"Submit Form\",\"img_url\":\"\"}},\"editor_options\":{\"title\":\"Submit Button\"}}}',0,'form',NULL,1,'2022-09-22 04:40:10','2022-09-22 05:15:24');
/*!40000 ALTER TABLE `wp_fluentform_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_fluentform_logs`
--

DROP TABLE IF EXISTS `wp_fluentform_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_fluentform_logs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent_source_id` int(10) unsigned DEFAULT NULL,
  `source_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source_id` int(10) unsigned DEFAULT NULL,
  `component` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` char(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_fluentform_logs`
--

LOCK TABLES `wp_fluentform_logs` WRITE;
/*!40000 ALTER TABLE `wp_fluentform_logs` DISABLE KEYS */;
INSERT INTO `wp_fluentform_logs` VALUES (1,3,'submission_item',5,'EmailNotification','info','Email sending initiated','Email Notification broadcasted to wp@dxpsites.com.<br />Subject: [Dhriaj] New Form Submission','2022-09-22 07:37:11');
/*!40000 ALTER TABLE `wp_fluentform_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_fluentform_submission_meta`
--

DROP TABLE IF EXISTS `wp_fluentform_submission_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_fluentform_submission_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `response_id` bigint(20) unsigned DEFAULT NULL,
  `form_id` int(10) unsigned DEFAULT NULL,
  `meta_key` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `name` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_fluentform_submission_meta`
--

LOCK TABLES `wp_fluentform_submission_meta` WRITE;
/*!40000 ALTER TABLE `wp_fluentform_submission_meta` DISABLE KEYS */;
INSERT INTO `wp_fluentform_submission_meta` VALUES (1,1,3,'_entry_uid_hash','f5618f18c402914a5bf0aa37dda148cc',NULL,NULL,NULL,'2022-09-22 06:58:54','2022-09-22 06:58:54'),(2,1,3,'is_form_action_fired','yes',NULL,NULL,NULL,'2022-09-22 06:58:54','2022-09-22 06:58:54'),(3,2,3,'_entry_uid_hash','619d853b4b306efa5e5654ec93f53f4a',NULL,NULL,NULL,'2022-09-22 07:06:13','2022-09-22 07:06:13'),(4,2,3,'is_form_action_fired','yes',NULL,NULL,NULL,'2022-09-22 07:06:13','2022-09-22 07:06:13'),(5,3,3,'_entry_uid_hash','672b5a32f2b08b6029e5c9a210c5ef31',NULL,NULL,NULL,'2022-09-22 07:10:10','2022-09-22 07:10:10'),(6,3,3,'is_form_action_fired','yes',NULL,NULL,NULL,'2022-09-22 07:10:10','2022-09-22 07:10:10'),(7,4,3,'_entry_uid_hash','d0936b66f0eecdf8b22e1623b683a085',NULL,NULL,NULL,'2022-09-22 07:13:02','2022-09-22 07:13:02'),(8,4,3,'is_form_action_fired','yes',NULL,NULL,NULL,'2022-09-22 07:13:02','2022-09-22 07:13:02'),(9,5,3,'_entry_uid_hash','d51782f124b3a02f8f9ce0f53c34c1b1',NULL,NULL,NULL,'2022-09-22 07:37:09','2022-09-22 07:37:09'),(10,5,3,'is_form_action_fired','yes',NULL,NULL,NULL,'2022-09-22 07:37:12','2022-09-22 07:37:12');
/*!40000 ALTER TABLE `wp_fluentform_submission_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_fluentform_submissions`
--

DROP TABLE IF EXISTS `wp_fluentform_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_fluentform_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT NULL,
  `serial_number` int(10) unsigned DEFAULT NULL,
  `response` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `status` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT 'unread' COMMENT 'possible values: read, unread, trashed',
  `is_favourite` tinyint(1) NOT NULL DEFAULT 0,
  `browser` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `device` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_status` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_method` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_type` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_total` float DEFAULT NULL,
  `total_paid` float DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_fluentform_submissions`
--

LOCK TABLES `wp_fluentform_submissions` WRITE;
/*!40000 ALTER TABLE `wp_fluentform_submissions` DISABLE KEYS */;
INSERT INTO `wp_fluentform_submissions` VALUES (1,3,1,'{\"__fluent_form_embded_post_id\":\"144\",\"_fluentform_3_fluentformnonce\":\"39f4eac08b\",\"_wp_http_referer\":\"\\/?fluent_forms_pages=1&design_mode=1&preview_id=3\",\"names\":{\"first_name\":\"dhiraj\",\"last_name\":\"kumar\"},\"email\":\"dhiraj@whatthehell.cop\",\"subject\":\"kfjdljf\",\"message\":\"dkfjkldjfkas\"}','https://weinfluence.saturnwp.link/?fluent_forms_pages=1&design_mode=1&preview_id=3',1,'read',0,'Chrome','Apple','2401:4900:1f3e:1162:a431:2953:a07d:1c5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-22 06:58:54','2022-09-22 06:58:54'),(2,3,2,'{\"__fluent_form_embded_post_id\":\"144\",\"_fluentform_3_fluentformnonce\":\"39f4eac08b\",\"_wp_http_referer\":\"\\/\",\"names\":{\"first_name\":\"Dhiraj\",\"last_name\":\"Kumar\"},\"email\":\"dhiraj@whatthehell.co\",\"subject\":\"This is test\",\"message\":\"hi\"}','https://weinfluence.saturnwp.link/',1,'unread',0,'Chrome','Apple','2401:4900:1f3e:1162:a431:2953:a07d:1c5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-22 07:06:13','2022-09-22 07:06:13'),(3,3,3,'{\"__fluent_form_embded_post_id\":\"144\",\"_fluentform_3_fluentformnonce\":\"39f4eac08b\",\"_wp_http_referer\":\"\\/\",\"names\":{\"first_name\":\"Dhiraj\",\"last_name\":\"Kumar\"},\"email\":\"dhiraj@whatthehell.co\",\"subject\":\"kfkdjfdjf\",\"message\":\"kfdfjldk\"}','https://weinfluence.saturnwp.link/',1,'unread',0,'Chrome','Apple','2401:4900:1f3e:1162:a431:2953:a07d:1c5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-22 07:10:10','2022-09-22 07:10:10'),(4,3,4,'{\"__fluent_form_embded_post_id\":\"144\",\"_fluentform_3_fluentformnonce\":\"39f4eac08b\",\"_wp_http_referer\":\"\\/?fluent_forms_pages=1&design_mode=1&preview_id=3\",\"names\":{\"first_name\":\"dhiraj\",\"last_name\":\"fjjfksj\"},\"email\":\"dhiraj@whatthehell.co\",\"subject\":\"dkfjdkljf\",\"message\":\"fkljdskfjld\"}','https://weinfluence.saturnwp.link/?fluent_forms_pages=1&design_mode=1&preview_id=3',1,'read',0,'Chrome','Apple','2401:4900:1f3e:1162:a431:2953:a07d:1c5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-22 07:13:02','2022-09-22 07:13:02'),(5,3,5,'{\"__fluent_form_embded_post_id\":\"144\",\"_fluentform_3_fluentformnonce\":\"39f4eac08b\",\"_wp_http_referer\":\"\\/\",\"names\":{\"first_name\":\"Dhriaj\",\"last_name\":\"\"},\"email\":\"dhiraj@whatthehell.co\",\"subject\":\"dfdkfjlkqjflkdsjf\",\"message\":\"jfkdjfkldj\"}','https://weinfluence.saturnwp.link/',1,'unread',0,'Chrome','Apple','2401:4900:1f3e:1162:a431:2953:a07d:1c5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-22 07:37:09','2022-09-22 07:37:09');
/*!40000 ALTER TABLE `wp_fluentform_submissions` 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=21116 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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://weinfluence-new.in8.cdn-alpha.com','yes'),(2,'home','https://weinfluence-new.in8.cdn-alpha.com','yes'),(3,'blogname','We Influence','yes'),(4,'blogdescription','Influence Your Business','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','wp@dxpsites.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:139:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s: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: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:45:\"elementskit-content/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"elementskit-content/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"elementskit-content/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"elementskit-content/(.+?)/embed/?$\";s:52:\"index.php?elementskit_content=$matches[1]&embed=true\";s:38:\"elementskit-content/(.+?)/trackback/?$\";s:46:\"index.php?elementskit_content=$matches[1]&tb=1\";s:46:\"elementskit-content/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&paged=$matches[2]\";s:53:\"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&cpage=$matches[2]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$matches[1]&page=$matches[2]\";s:40:\"elementor-hf/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"elementor-hf/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"elementor-hf/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"elementor-hf/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"elementor-hf/([^/]+)/embed/?$\";s:45:\"index.php?elementor-hf=$matches[1]&embed=true\";s:33:\"elementor-hf/([^/]+)/trackback/?$\";s:39:\"index.php?elementor-hf=$matches[1]&tb=1\";s:41:\"elementor-hf/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&paged=$matches[2]\";s:48:\"elementor-hf/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&cpage=$matches[2]\";s:37:\"elementor-hf/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?elementor-hf=$matches[1]&page=$matches[2]\";s:29:\"elementor-hf/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"elementor-hf/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"elementor-hf/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"elementor-hf/[^/]+/([^/]+)/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: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:40:\"index.php?&page_id=144&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:10:{i:0;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:37:\"elementskit-lite/elementskit-lite.php\";i:4;s:25:\"fluentform/fluentform.php\";i:5;s:35:\"fluentforms-pdf/fluentforms-pdf.php\";i:6;s:35:\"google-site-kit/google-site-kit.php\";i:7;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:8;s:29:\"nginx-helper/nginx-helper.php\";i:9;s:21:\"speedien/speedien.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','https://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','-5.5','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','hello-elementor','yes'),(41,'stylesheet','hello-elementor','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','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:25:\"templately/templately.php\";a:2:{i:0;s:27:\"Templately\\Core\\Maintenance\";i:1;s:9:\"uninstall\";}s:37:\"essential-blocks/essential-blocks.php\";a:2:{i:0;s:32:\"EssentialBlocks\\Core\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','144','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','399','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1679170495','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:69:{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:27:\"fluentform_dashboard_access\";b:1;s:24:\"fluentform_forms_manager\";b:1;s:25:\"fluentform_entries_viewer\";b:1;s:25:\"fluentform_manage_entries\";b:1;s:24:\"fluentform_view_payments\";b:1;s:26:\"fluentform_manage_payments\";b:1;s:27:\"fluentform_settings_manager\";b:1;s:22:\"fluentform_full_access\";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'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:2:{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\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:15:{i:1681812767;a:1:{s:29:\"fluentform_do_scheduled_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"ff_every_five_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1681812895;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:1681843696;a:1:{s:41:\"googlesitekit_cron_update_remote_features\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1681848895;a:6:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s: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:18:\"wp_https_detection\";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_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:1681849032;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: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:1681849033;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681849034;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681849236;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:1681862400;a:1:{s:22:\"eb_pattern_update_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681898867;a:1:{s:42:\"fluentform_do_email_report_scheduled_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681898912;a:1:{s:30:\"fluentform_pdf_cleanup_tmp_dir\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1689920671;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1691612374;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:1694235721;a:1:{s:34:\"elementor_1_elementor_updater_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:43:\"elementor_1_elementor_updater_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'rt_wp_nginx_helper_options','a:19:{s:12:\"enable_purge\";i:1;s:12:\"cache_method\";s:12:\"enable_redis\";s:10:\"enable_map\";i:0;s:10:\"enable_log\";i:0;s:12:\"enable_stamp\";i:0;s:22:\"purge_homepage_on_edit\";i:1;s:21:\"purge_homepage_on_del\";i:1;s:21:\"purge_archive_on_edit\";i:1;s:20:\"purge_archive_on_del\";i:1;s:28:\"purge_archive_on_new_comment\";i:0;s:32:\"purge_archive_on_deleted_comment\";i:0;s:17:\"purge_page_on_mod\";i:1;s:25:\"purge_page_on_new_comment\";i:1;s:29:\"purge_page_on_deleted_comment\";i:1;s:12:\"purge_method\";s:11:\"get_request\";s:9:\"purge_url\";s:0:\"\";s:14:\"redis_hostname\";s:9:\"127.0.0.1\";s:10:\"redis_port\";s:4:\"6379\";s:12:\"redis_prefix\";s:12:\"nginx-cache:\";}','yes'),(130,'wp_cli_login','{\"endpoint\":\"c3e084fb\",\"version\":\"^1.2\"}','yes'),(134,'ai1wmue_plugin_key','1bebc005-bc23-4932-8b3f-1b4b72ee066a','yes'),(154,'WPLANG','','yes'),(155,'new_admin_email','wp@dxpsites.com','yes'),(168,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.52\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:259:\"<ul class=\"description\"><li>Remove the import limit of 512MB</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;}}','yes'),(169,'elementor_active_kit','7','yes'),(172,'recently_activated','a:0:{}','yes'),(173,'elementor_version','3.15.2','yes'),(174,'elementor_install_history','a:7:{s:5:\"3.7.6\";i:1663618836;s:6:\"3.10.0\";i:1673990701;s:6:\"3.10.1\";i:1674019476;s:6:\"3.10.2\";i:1677497001;s:6:\"3.11.5\";i:1679270810;s:6:\"3.12.1\";i:1680477126;s:6:\"3.15.2\";i:1691643296;}','yes'),(175,'elementor_events_db_version','1.0.0','no'),(176,'elementor_onboarded','1','yes'),(177,'_elementor_installed_time','1663618844','yes'),(178,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{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:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;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:27:{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:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; 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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(179,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:71:\"6 Best WordPress Image Optimization Plugins of 2024 (+Real Image Tests)\";s:7:\"excerpt\";s:116:\"Explore the top 6 WordPress image optimization plugins of 2024 for faster site speed and better SEO with real tests.\";s:7:\"created\";i:1712656602;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:126:\"https://elementor.com/blog/image-optimization-plugins/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:84:\"Introducing Elementor 3.20: New Display Condition Features, Performance Improvements\";s:7:\"excerpt\";s:189:\"Version 3.20 introduces exciting new features that enhance the flexibility of Display Conditions. This version also improves the loading time of your site’s frontend and backend, and more\";s:7:\"created\";i:1710845895;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:167:\"https://elementor.com/blog/elementor-320-display-conditions-enhacments-peformance-improvements/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.19: Display Conditions, Role Permissions in the Element Manager, and More\";s:7:\"excerpt\";s:230:\"Create dynamic visitor experiences, customize your teammates’ widget panels, protect forms from spam submissions, generate variations in the template library, and use URLs from the open web as a reference to generate containers.\";s:7:\"created\";i:1707315304;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/elementor-319-display-conditions-akismet-integration/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(182,'hfe_plugin_is_activated','yes','yes'),(183,'_hfe_db_version','1.6.28','yes'),(184,'bsf_analytics_installed_time','1663618849','no'),(187,'theme_mods_twentytwentytwo','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1663618896;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(188,'current_theme','Hello Elementor','yes'),(189,'theme_mods_hello-elementor','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:350;}','yes'),(190,'theme_switched','','yes'),(191,'hello_theme_version','2.8.1','yes'),(197,'elementor_previous_kit','5','yes'),(199,'elementor_log','a:32:{s:32:\"9a3f7e1e2ba036a33ad3c18898f03df4\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:90:\"/storage/v1311/weinfluence/public_html/wp-content/plugins/elementor/core/base/document.php\";s:7:\"\0*\0line\";i:1535;s:7:\"\0*\0date\";s:19:\"2022-09-19 14:57:25\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:26:\"Undefined index: thumbnail\";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:\"2022-09-19 14:57:25\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:26:\"Undefined index: thumbnail\";s:4:\"file\";s:90:\"/storage/v1311/weinfluence/public_html/wp-content/plugins/elementor/core/base/document.php\";s:4:\"line\";i:1535;s:5:\"trace\";b:1;}}s:32:\"c7fed8505b625f2ca372ff601c02309c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-09-22 04:31:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.7.6\";s:2:\"to\";s:5:\"3.7.7\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-09-22 04:31:54\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.7.6\";s:2:\"to\";s:5:\"3.7.7\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"0874caccc25632881c12e4d08068f1a4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-17 15:55:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-01-17 15:55:01\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"d4f43dd0e390c48d1e50c5300621d01b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-17 15:55:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-01-17 15:55:01\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"2db5ab0e84477d6db10818733983c4ba\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-17 15:55:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-01-17 15:55:01\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"634d881bf47c09ef43d4ed3741cb016c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-17 15:55:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.7.6\";s:2:\"to\";s:6:\"3.10.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-01-17 15:55:01\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.7.6\";s:2:\"to\";s:6:\"3.10.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"f045d04d78a185b327977f9582c8db90\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-17 23:54:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-01-17 23:54:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"b99ad12166a82a87edd5eacc050f62cd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-17 23:54:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-01-17 23:54:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"3d1222d46d15fa18f8d74cc5cd0f05fe\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-17 23:54:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-01-17 23:54:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4253d6a45b649c7a099568edd0c74753\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-17 23:54:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.0\";s:2:\"to\";s:6:\"3.10.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-01-17 23:54:36\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.0\";s:2:\"to\";s:6:\"3.10.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"a88fb8b24c4ff83b071e65f445cc0b06\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-17 23:54:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.0\";s:2:\"to\";s:6:\"3.10.1\";}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2023-01-17 23:54:36\";i:1;s:19:\"2023-01-17 23:54:36\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.0\";s:2:\"to\";s:6:\"3.10.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"4ef1e8f3c1f37a54b3a4b121c2dd4223\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-02-27 05:53:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-02-27 05:53:21\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"825e0cf35b9fb091b6c1ad5051bd576e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-02-27 05:53:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-02-27 05:53:21\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"93f802c721ea2bd803b79012729aaef7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-02-27 05:53:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-02-27 05:53:21\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"27a77bf459f6c640a8de8a3f46783f63\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-02-27 05:53:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.1\";s:2:\"to\";s:6:\"3.10.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-02-27 05:53:21\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.1\";s:2:\"to\";s:6:\"3.10.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5385f92eaa75d23b0b73ba41bfc2ef66\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"51824\";s:7:\"\0*\0file\";s:233:\"https://weinfluence.in/wp-admin/load-scripts.php?c=0&amp;loadchunk_0=jquery-core,jquery-migrate,regenerator-runtime,wp-polyfill,jquery-ui-core,jquery-ui-mouse,underscore,backbone,wp-api-request,wp-&amp;loadchunk_1=hooks&amp;ver=6.1.1\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2023-02-28 10:22:47\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:65:\"Cannot read properties of undefined (reading &#039;replace&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:8;s:14:\"\0*\0times_dates\";a:8:{i:0;s:19:\"2023-02-28 10:22:47\";i:1;s:19:\"2023-02-28 10:36:03\";i:2;s:19:\"2023-02-28 11:22:53\";i:3;s:19:\"2023-02-28 11:34:13\";i:4;s:19:\"2023-02-28 11:42:50\";i:5;s:19:\"2023-02-28 12:29:57\";i:6;s:19:\"2023-03-01 07:45:57\";i:7;s:19:\"2023-03-01 09:06:41\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1677579767\";s:7:\"message\";s:55:\"Cannot read properties of undefined (reading \'replace\')\";s:3:\"url\";s:233:\"https://weinfluence.in/wp-admin/load-scripts.php?c=0&amp;loadchunk_0=jquery-core,jquery-migrate,regenerator-runtime,wp-polyfill,jquery-ui-core,jquery-ui-mouse,underscore,backbone,wp-api-request,wp-&amp;loadchunk_1=hooks&amp;ver=6.1.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"51824\";}}s:32:\"dce0716dd42960982653bc4f289bae6d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-19 18:27:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.2\";s:2:\"to\";s:6:\"3.11.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-19 18:27:37\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.2\";s:2:\"to\";s:6:\"3.11.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"002ce52421d0ef420f2131f61fcc247c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-19 18:36:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-19 18:36:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"cc45fed91d1bb7b6dfda398e47d64503\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-19 18:36:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-19 18:36:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"d6d33ae45aded266a5b6e8e070ec4d9b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-19 18:36:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-19 18:36:50\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"84ca18246b5daf5fad057f9519473cc2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-19 18:36:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.2\";s:2:\"to\";s:6:\"3.11.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-19 18:36:50\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.2\";s:2:\"to\";s:6:\"3.11.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"29c38e7efc79a3d83bb28819b993bd5a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-02 17:42:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-02 17:42:06\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"d4b6470c86d14c8355c2c739bec43fcb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-02 17:42:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-02 17:42:06\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"52002fdd61e75dd9fd4715a3b4698f24\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-02 17:42:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-02 17:42:06\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"7e4e4d536657ce1e42fe0d2ebdf17a92\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-02 17:42:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.11.5\";s:2:\"to\";s:6:\"3.12.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-02 17:42:06\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.11.5\";s:2:\"to\";s:6:\"3.12.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"25bb755d445f900f0a8a4cb86cffdf9d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-02 17:42:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.11.5\";s:2:\"to\";s:6:\"3.12.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-02 17:42:06\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.11.5\";s:2:\"to\";s:6:\"3.12.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"2e8d0b719ccefe1136f19ddb0b43722a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-07-21 00:54:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.1\";s:2:\"to\";s:6:\"3.14.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-07-21 00:54:30\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.1\";s:2:\"to\";s:6:\"3.14.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3cac3bd74d085514c507cfe0efe7b4c1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-09 23:24:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-09 23:24:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"e49b60143cdad2f4a6ad7b283900c44a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-09 23:24:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-09 23:24:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"a52768c98bb53769c9cf213bec5c705e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-09 23:24:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-09 23:24:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"a23c4115a37c8378b5c24be0ac3fa15d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-09 23:24:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.1\";s:2:\"to\";s:6:\"3.15.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-09 23:24:55\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.1\";s:2:\"to\";s:6:\"3.15.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ed167457a4ec4e5b1c1f7ff738cde6cb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-09-08 23:31:51\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.2\";s:2:\"to\";s:6:\"3.15.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-09-08 23:31:51\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.2\";s:2:\"to\";s:6:\"3.15.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(204,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(205,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(206,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(246,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:5;}}','yes'),(247,'bsf_analytics_optin','no','yes'),(287,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(288,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(352,'googlesitekit_db_version','1.3.0','yes'),(353,'googlesitekit_has_connected_admins','0','yes'),(410,'fluentform_entry_details_migrated','yes','no'),(411,'fluentform_db_fluentform_logs_added','1','no'),(412,'fluentform_scheduled_actions_migrated','yes','no'),(413,'__fluentform_global_form_settings','a:1:{s:6:\"layout\";a:5:{s:14:\"labelPlacement\";s:3:\"top\";s:17:\"asteriskPlacement\";s:14:\"asterisk-right\";s:20:\"helpMessagePlacement\";s:10:\"with_label\";s:21:\"errorMessagePlacement\";s:6:\"inline\";s:12:\"cssClassName\";s:0:\"\";}}','no'),(414,'_fluentform_installed_version','4.3.12','no'),(415,'fluentform_global_modules_status','a:9:{s:9:\"mailchimp\";s:2:\"no\";s:14:\"activecampaign\";s:2:\"no\";s:16:\"campaign_monitor\";s:2:\"no\";s:17:\"constatantcontact\";s:2:\"no\";s:11:\"getresponse\";s:2:\"no\";s:8:\"icontact\";s:2:\"no\";s:7:\"webhook\";s:2:\"no\";s:6:\"zapier\";s:2:\"no\";s:5:\"slack\";s:2:\"no\";}','no'),(416,'widget_fluentform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(431,'_elementor_editor_upgrade_notice_dismissed','1677483707','yes'),(512,'_fluentform_pdf_settings','a:8:{s:10:\"paper_size\";s:2:\"A4\";s:11:\"orientation\";s:1:\"P\";s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:2:\"14\";s:10:\"font_color\";s:7:\"#323232\";s:12:\"accent_color\";s:7:\"#989797\";s:13:\"heading_color\";s:7:\"#000000\";s:18:\"language_direction\";s:3:\"ltr\";}','no'),(517,'_fluentform_security_salt','O0@XvRdrQ#Jy','no'),(542,'recovery_mode_email_last_sent','1664612264','yes'),(543,'recovery_keys','a:0:{}','yes'),(15605,'category_children','a:0:{}','yes'),(16437,'https_detection_errors','a:0:{}','yes'),(16444,'finished_updating_comment_type','1','yes'),(18553,'elementor_library_category_children','a:0:{}','yes'),(18630,'elementor_allow_tracking','yes','yes'),(18631,'elementor_tracker_last_send','1681768698','yes'),(18635,'speedien_options','a:2:{s:22:\"speedien_field_api_key\";s:32:\"6a7929186b30ffd480c56917f4268a9f\";s:22:\"speedien_field_site_id\";s:32:\"45b5bca887d39f28e7c251f92a7d813a\";}','yes'),(18649,'speedien_cdnurl','cdniq.us1.myspdn.com/aafswaqhv5fqe9dtt9bl2cpgo','yes'),(18743,'eael_setup_wizard','complete','yes'),(18744,'eael_save_settings','a:56:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";s:0:\"\";s:12:\"gravity-form\";s:0:\"\";s:12:\"caldera-form\";s:0:\"\";s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:8:\"typeform\";s:0:\"\";s:24:\"betterdocs-category-grid\";s:0:\"\";s:23:\"betterdocs-category-box\";s:0:\"\";s:22:\"betterdocs-search-form\";s:0:\"\";s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";s:0:\"\";s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";s:0:\"\";s:8:\"woo-cart\";s:0:\"\";s:14:\"login-register\";s:0:\"\";s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";i:1;s:20:\"woo-product-carousel\";i:1;s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";i:1;s:18:\"interactive-circle\";s:0:\"\";s:14:\"better-payment\";i:1;s:11:\"nft-gallery\";i:1;s:16:\"business-reviews\";s:0:\"\";}','yes'),(18746,'eael_version','5.6.0','yes'),(18752,'essential_blocks_version','4.0.1','yes'),(18753,'essential_blocks_notices','a:3:{s:6:\"opt_in\";a:1:{s:5:\"start\";i:1677555270;}s:7:\"version\";s:5:\"1.0.0\";s:6:\"review\";a:3:{s:5:\"start\";i:1678419271;s:10:\"recurrence\";i:15;s:7:\"refresh\";s:5:\"4.0.1\";}}','no'),(18755,'eael_admin_menu_notice','4','no'),(18760,'eael_templately_promo_hide','1','yes'),(18763,'_templately_migrate','2.1.0','no'),(18784,'elementskit-lite__banner_last_check','1691643245','yes'),(18785,'elementskit-lite__banner_data','O:8:\"stdClass\":10:{s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010418\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010418;s:5:\"title\";s:32:\"Wpmet Summer Ownpage Notice 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1685577600;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:26:\"https://wpmet.com/birthday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:539:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Birthday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $221 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 45% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2023/06/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10008094\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008094;s:5:\"title\";s:24:\"GetGenie Cross Promotion\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1678492800;s:3:\"end\";i:1688083200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:35:\"https://wpmet.com/getgenie-org-page\";s:11:\"button_text\";s:14:\"Get Yours Now!\";s:11:\"notice_body\";s:766:\"<h2>We are delighted to announce that <span style=\"color: #2471b1;\"><strong style=\"color: #2471b1; text-transform: uppercase; font-size: 14px;\">GetGenie AI is now available</strong></span>!</h2>\r\n<h4 style=\"font-size: 16px; margin-left: -2px;\"><b>Let&#039;s write your content 20x faster with AI. Also, Research </b><b>keywords</b><b>, A</b><b>nalyse your </b><b>competitors, head 2 Head analysis,  content writing with ai, and search engine ranking with NLP Keywords optimization—all within WordPress.</b> Additionally, <b>you can chat</b> with the GENIE AI about your needs.</h4>\r\n<span style=\"color: #dd0cd9;\">Join now and get <span style=\"font-weight: 400;\"><strong>1500 words for free every month</strong></span></span><span style=\"color: #dd0cd9;\">. </span>\";s:12:\"notice_image\";s:79:\"https://api.wpmet.com/auth/wp-content/uploads/2023/03/genie_compare_image_4.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:20:\"background: #e9fce5;\";s:10:\"unique_key\";s:20:\"getgenie-cross-promo\";}}s:8:\"10008085\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008085;s:5:\"title\";s:27:\"Wpmet Notice Dashboard 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:517:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet</span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10008083\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008083;s:5:\"title\";s:25:\"Wpmet Notice Ownpage 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:519:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet. </span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10007775\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007775;s:5:\"title\";s:17:\"August Flash Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:7:\"plugins\";s:5:\"start\";i:1661385600;s:3:\"end\";i:1661904000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:30:\"https://wpmet.com/flash/banner\";s:12:\"banner_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/InPlugin-Banner-4.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:76:\"background-color: #00003E; display: block; height: 60px; text-align: center;\";s:10:\"unique_key\";s:15:\"AugustFlashSale\";}}s:8:\"10007416\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007416;s:5:\"title\";s:28:\"Wpmet 4th of July Flash Sale\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1656806400;s:3:\"end\";i:1657065600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:603:\"ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly! Happy 4th of July Flash Sale!!\r\n\r\n<a href=\"https://wpmet.com/4-july/notice\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Claim Your Discount →&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:1337857,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:2,&quot;2&quot;:1136076},&quot;16&quot;:10,&quot;17&quot;:1,&quot;21&quot;:1,&quot;23&quot;:1}\" data-sheets-hyperlink=\"https://wpmet.com/deals\">Claim Your Discount →</span></a>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2022/07/Notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:13:\"4thJulybanner\";}}s:8:\"10007174\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007174;s:5:\"title\";s:31:\"Wpmet Birthday Campaign Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1653868800;s:3:\"end\";i:1655942400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:261:\"Wpmet\'s Birthday Sale is going on! Enjoy limited-time discounts of up to 50% on each of our PRO plugins — ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review. Hurry up!\r\n\r\n<a href=\"https://wpmet.com/notice/birthday-deal\">Get Your Discount →</a>\";s:12:\"notice_image\";s:76:\"https://api.wpmet.com/auth/wp-content/uploads/2022/05/InPlugin-Notice-50.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:14:\"birthdaybanner\";}}s:8:\"10007139\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007139;s:5:\"title\";s:31:\"Wpmet Summer Campaign Own Pages\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1650326400;s:3:\"end\";i:1651276800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:233:\"ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly throughout this Summer Sale!\r\n\r\n<a href=\"https://wpmet.com/notice/summer-sale\">Get Your Discount →</a>\";s:12:\"notice_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/04/InPlugin-Notice-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:12:\"summerbanner\";}}}','yes'),(18786,'elementskit-lite_install_date','2023-02-28 09:17:33','yes'),(18805,'elementskit-lite__stories_last_check','1691643244','yes'),(18806,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10010504\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010504;s:5:\"title\";s:22:\"Wpmet Summer Sale 2023\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:23:\"https://wpmet.com/Sum23\";s:11:\"story_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/summer_sale_story.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010500\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010500;s:5:\"title\";s:43:\"Benefits of Ai Chatbot for Customer Service\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:64:\"https://getgenie.ai/benefits-of-ai-chatbot-for-customer-service/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010499\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010499;s:5:\"title\";s:61:\"Ai Generated Content Plagiarism Detection: Step-by-Step Guide\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:62:\"https://getgenie.ai/ai-generated-content-plagiarism-detection/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010498\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010498;s:5:\"title\";s:65:\"Multilingual Content Creation: Breaking Language Barriers with Ai\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:58:\"https://getgenie.ai/multilingual-content-creation-with-ai/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010497\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010497;s:5:\"title\";s:56:\"How to Add Dual Button in WordPress (Step-By-Step-Guide)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:47:\"https://wpmet.com/add-dual-button-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010496\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010496;s:5:\"title\";s:57:\"How to Show a Post List in WordPress: Your Ultimate Guide\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:75:\"https://wpmet.com/how-to-show-a-post-list-in-wordpress-your-ultimate-guide/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010462\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010462;s:5:\"title\";s:57:\"How To Show Dribbble Feed On Your Website In 7 Easy Steps\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:44:\"https://wpmet.com/how-to-show-dribbble-feed/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010461\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010461;s:5:\"title\";s:44:\"How to Add Motion Text to WordPress Websites\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:55:\"https://wpmet.com/add-motion-text-to-wordpress-website/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010460\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010460;s:5:\"title\";s:59:\"How to Create a Particle Effect in WordPress [The Easy Way]\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:63:\"https://wpmet.com/how-to-create-a-particle-effect-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010459\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010459;s:5:\"title\";s:49:\"What Are The Common Copywriting Mistakes to Avoid\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:57:\"https://getgenie.ai/common-copywriting-mistakes-to-avoid/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(18993,'site_logo','350','yes'),(20207,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:15:\"wp@dxpsites.com\";s:7:\"version\";s:3:\"6.2\";s:9:\"timestamp\";i:1680404312;}','no'),(20608,'ai1wm_secret_key','9PLdWiqW8klP','yes'),(20609,'ai1wm_backups_labels','a:0:{}','yes'),(20610,'ai1wm_sites_links','a:0:{}','yes'),(20611,'swift_performance_plugin_organizer','a:0:{}','yes'),(20612,'jetpack_active_modules','a:0:{}','yes'),(20613,'_transient_doing_cron','1717188461.5408329963684082031250','yes'),(20615,'_transient_googlesitekit_verification_meta_tags','a:0:{}','yes'),(20703,'action_scheduler_hybrid_store_demarkation','413','yes'),(20704,'schema-ActionScheduler_StoreSchema','6.0.1689920671','yes'),(20705,'schema-ActionScheduler_LoggerSchema','3.0.1689920671','yes'),(20733,'action_scheduler_lock_async-request-runner','1691644090','yes'),(20734,'db_upgraded','','yes'),(20735,'_site_transient_timeout_browser_0a264a5519a9e1055915d67c10c5115b','1692248042','no'),(20736,'_site_transient_browser_0a264a5519a9e1055915d67c10c5115b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"115.0.0.0\";s:8:\"platform\";s:0:\"\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(20737,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1692248043','no'),(20738,'_site_transient_php_check_2f5acf219326a8bc5331ee302b9812f4','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(20739,'_transient_timeout_elementor_remote_info_api_data_3.15.2','1691686446','no'),(20740,'_transient_elementor_remote_info_api_data_3.15.2','a:4:{s:9:\"timestamp\";s:10:\"1691640229\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(20741,'can_compress_scripts','0','yes'),(20742,'_site_transient_timeout_community-events-b55675f0e3b13ee80974f1839707be80','1691686473','no'),(20743,'_site_transient_community-events-b55675f0e3b13ee80974f1839707be80','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"172.69.178.0\";}s:6:\"events\";a:0:{}}','no'),(20744,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1691686473','no'),(20745,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 23:38:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.4-alpha-56379\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 6.3 “Lionel”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15718\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"WordPress 6.3 \"Lionel\" is here! Named after Lionel Hampton, the prolific jazz musician and bandleader, this release was made possible by over 650 contributors. Download WordPress 6.3 Lionel today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:70083:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" fetchpriority=\"high\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-15794\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=2048%2C1365&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled: &quot;Do everything in the Site Editor&quot;\" class=\"wp-image-15808\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Do everything in the Site Editor</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting &quot;Previewing: Organizer&quot;\" class=\"wp-image-15769\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Preview a new block theme before you switch and commit</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>My patterns: All your patterns in one place</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Get to know the new Command Palette </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>New design tools</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled &quot;Style Revisions&quot;\" class=\"wp-image-15770\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Style revisions: See your style revision history </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Add footnotes effortlessly with the new Footnotes Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Display or hide content with the new Details Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benlk/\">Ben Keith</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan (a11n)</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">Habibur Rahman Delwar</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br>Ships tools for building great sites<br>Collaboration</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"cra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15686\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:216:\"\"Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation.\" Learn more about the Cyber Resilience Act and its impact on open source.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4334:\"\n<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup data-fn=\"eb28afbc-3487-447f-9af9-8b0418310a00\" class=\"fn\"><a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />︎</a></li></ol></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15686\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15615\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:226:\"WordPress 6.3 Release Candidate 3 is now available for download and testing.\n\nThe WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6221:\"\n<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F25%2F2023..08%2F01%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br>A monumental release<br>Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Ihtisham Zahoor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 20:22:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15589\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"People of WordPress features Ihtisham Zahoor, an administrator turned web developer from Pakistan.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12334:\"\n<p>From administrator to web developer thanks to the supportive WordPress community. Through learning from other software users in Pakistan, Ihtisham Zahoor knew that his life would change. He moved cities and careers to make his life through open source.</p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Ihtisham Zahoor in the moutains.\" class=\"wp-image-15478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?w=1900&amp;ssl=1 1900w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Ihtisham, from Haripur, a city in northern Pakistan, said: “The WordPress community made me a firm believer in the power of open source software. This is why I am an enthusiast and one who enjoys contributing back to the community via writing, speaking, and helping organize meetups.”</p>\n\n\n\n<p>When Ihtisham discovered WordPress, his fascination for working with computing grew. He knew he did not want to just work in administration his entire career.</p>\n\n\n\n<p>Ihitsham describes himself as an ‘introvert’ and therefore the idea of remote work appealed as he could still add value to others through technology. He was intrigued by the thought of the freedom to choose his work hours. However, without access to others who had already transformed their careers and lives through web development, he felt he ‘had no path to follow to turn my dream into a reality.’</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges become opportunities to learn when there is an active community&nbsp;&nbsp;</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=675%2C900&#038;ssl=1\" alt=\"Ihtisham Zahoor wearing a sweatshirt with the London tube sign \'Mind the Gap\'.\" class=\"wp-image-15480\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?w=675&amp;ssl=1 675w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 675px) 100vw, 675px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Lacking any kind of informed support network to advise or guide him, Ihtisham devoted time to online research to find the next steps he could take. Looking back, he believes that for those who are not in a network with others with similar interests, it can be hard to keep learning and experimenting with new things. Isolation can be a barrier to working in web development.&nbsp;&nbsp;</p>\n\n\n\n<p>He said: “I think it is not easy to stay motivated when there aren’t immediate rewards for the hard work we do. Sometimes, weeks would go by when my only focus would be to stay motivated rather than give up.”</p>\n\n\n\n<p>After another two years of combining learning and work, Ihtisham took up using WordPress as a full-time career. He moved to the capital of Pakistan, Islamabad. It was not easy at first. He recalls: “After many failed attempts at getting hired and desperate moments, I finally received an offer from a digital agency as a web developer focused on the WordPress platform.”</p>\n\n\n\n<p>He added: “Moving to work with a bigger agency was one of the best decisions of my life as it helped me with my professional growth by becoming familiar with the whole WordPress ecosystem in a supportive environment. I was valued for my opinions in the web projects in which I was involved. I was also appreciated and encouraged for the open source work I did for the company.” He summarized his enthusiasm for WordPress like this: “It is really interesting figuring out what is happening in the backends. I like problem-solving and finding solutions which you can do with WordPress.”</p>\n\n\n\n<p>During the Covid-19 pandemic, Ihtisham moved to join a start-up based in his hometown which provides web development services to international clients. He works as a developer and has the opportunity to learn more about client communication and project management. “WordPress has opened up so many opportunities for me. It has been an exciting journey for me with lots of learning every day,” he said. In particular, he has discovered an interest in APIs and regularly uses his spare time to follow tickets in the hope of one day contributing even more to topics, such as, third-party app integration through APIs on WordPress sites.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Give back through WordPress community</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"800\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=800%2C599&#038;ssl=1\" alt=\"Ihtisham Zahoor speaking at a meetup.\" class=\"wp-image-15477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?w=800&amp;ssl=1 800w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=768%2C575&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It was not just software that made a difference in Ihtisham’s life. Joining a welcoming and sharing community was transforming for him. Recalling those early days of isolation, he values the WordPress community and is wholly committed to the power of open-source software. He now enjoys writing, speaking, and organizing meetups to give back to both to the community. He has written software for the platform and contributes to the Core work, which he describes as a ‘humbling’ experience. He is fond of <a href=\"https://islamabad.wordcamp.org/\">WordCamp Islamabad</a> and in 2023 is on the organizing team to help bring both WordPress and its community to others in Pakistan.</p>\n\n\n\n<p>“My first experience,” he said, “was that everyone was so friendly and open to sharing what they have learned, even though they were all busy working. This really had an impact on me. It really helped me and gave me the confidence that I could work with WordPress…. It was a real step forward for me joining this community.” </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"512\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&#038;ssl=1\" alt=\"Ihtisham visited WordCamp Karachi.\" class=\"wp-image-15482\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>A particular meeting in 2018 led to new friendships through the WordPress community. Ihtisham was on a train to Karachi for the first ever Pakistani WordCamp in 2018 and met a group of fellow attendees he now regards as close friends. What impressed him most about the camp was that although he met many people with considerable expertise, they also had a generosity of spirit and humbleness in their willingness to share this knowledge. in sharing it. Now, he and this group of friends make a point to taking trains across the country, which allows him to fulfil another dream of traveling widely. He says these things and other ‘side benefits’ have been made possible by the WordPress community, and for that, he is &#8216;forever grateful&#8217;.<br><br>Ihtisham particularly wanted to share his story through this People of WordPress article to encourage those starting with little or no support to remain persistent. He knows from experience breaking into the tech world can be hard, especially when you may be switching from doing something else and have no ‘track record’ to offer. </p>\n\n\n\n<p>He feels he is a living example of how perseverance can lead to success. He offers these words to anyone thinking of making a move into development using the WordPress platform: “I attribute my success (financial and mental well-being) to the open-source nature of WordPress and its amazing community. It would not be possible to learn and use the plethora of free tools WordPress provides if it weren’t an open-source platform. It is for that reason I feel obligated to contribute back to this platform to the best of my abilities.” To those who are finding getting going difficult, as he did, he adds: “Get yourself a clear learning path and just dive in doing WordPress, and things will get better for you over time as they were for me, I promise. Good Luck!”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To help you discover more about how to use the WordPress software, there is a free resource from the community, <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Ihtisham Zahoor (<a href=\"https://profiles.wordpress.org/shaampk1/\">@shaampk1</a>) for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"//profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"//profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), and Meher Bala (<a href=\"//profiles.wordpress.org/meher/\">@meher</a>) for interviews, the feature and collaborating on images. To Chloe Bringmann (<a href=\"//profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mark Smallman (<a href=\"//profiles.wordpress.org/marks99/\">@marks99</a>), and Mary Baum (<a href=\"//profiles.wordpress.org/marybaum/\">@marybaum</a>) for reviews. Thanks to the late Surendra Thakor (<a href=\"//profiles.wordpress.org/sthakor/\">@sthakor</a>), Maja Loncar (<a href=\"//profiles.wordpress.org/majaloncar/\">@majaloncar</a>), Maedah Bahtool (<a href=\"//profiles.wordpress.org/maedahbatool/\">@maedahbatool</a>) and other members of the Marketing and Polyglots Team for their contributions.</p>\n\n\n<p>The People of WordPress series thanks Josepha Haden (<a href=\"//profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) and Topher DeRosia (<a href=\"//profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support.</p>\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Synced Patterns: The Evolution of Reusable Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 14:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15541\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:369:\"Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6153:\"\n<p>Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released on August 8th, you will be able to arrange blocks in unlimited ways and save them as patterns for use throughout your site, directly within the editing experience. You can also specify whether to sync your patterns, so that one change applies to all parts of your site, or to keep them unsynced, so you can customize each instance.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/plZIF3jrU7E?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Create your own patterns</h2>\n\n\n\n<p>The ability to create your own patterns, on top of using the ones bundled into each WordPress release, opens up a world of possibilities. Need to repeat the same contact information across your site and keep it up to date? Create a synced pattern with all the details, and say goodbye to repeating yourself, with the ability to quickly insert the synced pattern wherever you need it. If you find yourself creating various banners for your site and want them to have the same layout with unique content, creating an unsynced pattern speeds up your workflow and ensures a level of consistency in approach. While themes and plugins have been able to offer patterns to users and <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/#utilizing-patterns\">curate the experience</a>, this update allows agencies and site builders to do the same for their clients, directly in the site building process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Dig into the details</h2>\n\n\n\n<p>Any previously made Reusable blocks will continue to function as they do now, just under the new Synced pattern name. To help adjust to these changes, a few contextual notices will be placed throughout the interface. Specifically, the menu item in the creation flow will show as “Create pattern/reusable block” until the prompt describing the switch is dismissed in one of the various locations, including the naming and syncing modal:&nbsp;</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/fbrhammtn3Y?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>For folks using block themes, all patterns will be listed alongside template parts in the Site Editor &gt; Patterns section, where you can enter a focused editing mode to make changes. For Classic themes, the prior reusable block management page will now house patterns in a list, similar to the Posts &gt; All Posts view.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"590\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&#038;ssl=1\" alt=\"Patterns section of the WordPress Site Editor with My Patterns selected\" class=\"wp-image-15569\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=300%2C173&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=768%2C443&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1536%2C885&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>For a complete overview of patterns on your site, all patterns provided by themes and plugins will be shown in this section but without the option to edit directly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Go further</h2>\n\n\n\n<p>With the ability to create your own patterns baked into the creation experience, remember that you can copy the patterns available in the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a> and <a href=\"https://wordpress.org/patterns/about/\">contribute back</a>, an excellent way to democratize design for every WordPress user and the web.</p>\n\n\n\n<p><em>For more exciting features coming to patterns in WordPress 6.3, </em><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\"><em>read on in the Advancing the Power of Patterns post</em></a><em>. Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>Chloé Bringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>Jonathan Pantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/chanthaboune/\"><em>Josepha</em></a><em>, </em><a href=\"https://profiles.wordpress.org/kristastevens/\"><em>Krista Stevens</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>Nicholas Garofalo</em></a><em>, <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 16:43:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15460\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"WordPress 6.3 RC2 is ready for download and testing. Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7642:\"\n<p>WordPress 6.3 RC2 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, or run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>WordPress 6.3 is scheduled for release on August 8, 2023 – just two weeks from today.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC2 Highlights</h2>\n\n\n\n<p>Since the RC1 release on July 18, 2023, there have been approximately 15 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\" data-type=\"link\" data-id=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F18%2F2023..07%2F25%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>.</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>Footnotes will be reverted or restored with post revisions (<a href=\"https://github.com/WordPress/gutenberg/pull/52686\">#52686</a>).</li>\n\n\n\n<li>Distraction free adds a missing command in the site editor (<a href=\"https://github.com/WordPress/gutenberg/pull/52868\">#52868</a>).</li>\n\n\n\n<li>Global styles revisions will display text if no revisions are found (<a href=\"https://github.com/WordPress/gutenberg/pull/52865\">#52865</a>).</li>\n\n\n\n<li>The About Page has been completed (<a href=\"https://core.trac.wordpress.org/ticket/58067\">#58067</a>).</li>\n\n\n\n<li>The About Page now includes a “Get Involved” section (<a href=\"https://core.trac.wordpress.org/ticket/23348\">#23348</a>).</li>\n\n\n\n<li>The dark mode option has been restored in the block editor iframe for Twenty Twenty-One (<a href=\"https://core.trac.wordpress.org/ticket/58835\">#58835</a>).</li>\n\n\n\n<li>Max height value was fixed in the image scaling in the Edit Media screen (<a href=\"https://core.trac.wordpress.org/ticket/50523\">#50523</a>).</li>\n\n\n\n<li>Additionally, some issues regarding internationalization were addressed (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58879\" target=\"_blank\">#58879</a>, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58067\" target=\"_blank\">#58067</a> and <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58864\" target=\"_blank\">#58864</a>).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC2</h2>\n\n\n\n<p>You can test WordPress 6.3 RC2 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC2.zip\">RC2 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC2</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.3 betas by now. With RC2, you will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC2</h2>\n\n\n\n<p>Time is nearly here<br>WordPress shines thanks to you all<br>Let’s get testing, dear</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/priethor/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/priethor/\">@Priethor</a></em>,<em> <a href=\"https://profiles.wordpress.org/audrasjb/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/audrasjb/\">@AudrasJb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/davidbaumwald/\">@DavidBaumwald</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">@JPantani</a></em> and <em><a href=\"https://profiles.wordpress.org/meher/\">@Meher</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress 6.3 Live Product Demo – Highlights &amp; Recording\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 19:26:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"live demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15445\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Watch a demonstration of some of the newest features of WordPress 6.3, recorded live on July 20, 2023.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8111:\"\n<p>WordPress 6.3 ships on August 8th! For a sneak peek of what&#8217;s to come, members of the 6.3 release squad, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, held a live demo moderated by <a href=\"https://profiles.wordpress.org/njwrigley/\">Nathan Wrigley</a>.&nbsp;</p>\n\n\n\n<p>More than 100 attendees watched as some of the most anticipated product features were demonstrated, from the brand-new Command Palette to new design tools and more.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/I2dvEbBxaqA?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div><figcaption class=\"wp-element-caption\">6.3 Live Product Demo</figcaption></figure>\n\n\n\n<p>Here are some of the key takeaways from the 6.3 live product demonstration.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette’s big debut</h2>\n\n\n\n<p>One of the most anticipated features of 6.3 is the <a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Command Palette</a>. It lets you quickly navigate and open different WordPress functions within the post and Site Editor. Access it using a shortcut command (Command + K or Control + K).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Page creation gets easier in the Site Editor</h2>\n\n\n\n<p>Now you can browse and edit pages within the Site Editor, providing a more cohesive WordPress experience. A new drafting flow debuts, allowing you to create and publish pages directly within the editor.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Synced Patterns set to replace Reusable Blocks</h2>\n\n\n\n<p>You can create and manage all your patterns directly in the Site Editor. Once edited, all synced patterns (previously called Reusable Blocks) will change across a site—a huge time saver when making changes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Stay on top of design changes with Style Revisions</h2>\n\n\n\n<p>This enhancement offers a visual timeline of your site so you can see all the revisions in your site’s history and restore a previous style with just a click.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">New design tools and blocks</h2>\n\n\n\n<p>Controls for specifying aspect ratios to ensure design integrity, especially when using images in Patterns debut in 6.3, along with new blocks for Footnotes and Details. Easily add footnotes to your content and have them automatically linked to the corresponding text. With the Details block, hide or display content to create spoilers or accordions.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance</h2>\n\n\n\n<p>WordPress is getting faster with 6.3 as content with images will see speedier load times. Both theme types (Classic and Block) will also benefit from performance improvements. The upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is an excellent opportunity to learn more about performance enhancements directly from the WordPress Performance team.</p>\n\n\n\n<h2 class=\"wp-block-heading\">More from Core</h2>\n\n\n\n<ul>\n<li>Revert to previously installed versions when <a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">manual updates for themes and plugins fail</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support</a> for PHP 5. The new minimum supported version of PHP will be 7.0.0. The recommended version of PHP remains at 7.4 or greater.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">Accessibility updates</a>, especially for List View and the broader Site Editor experience.</li>\n\n\n\n<li>Improvements to internationalization <a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">just-in-time translation loading</a>.</li>\n</ul>\n\n\n\n<p>These new features and more await you as Phase 2 of the <a href=\"https://wordpress.org/about/roadmap/\">WordPress Roadmap</a> comes to a close with the 6.3 release.</p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\">question and answer session</a> followed the demo, with attendees asking plenty of great questions. The panelists shared links for additional reading regarding many new features—all conveniently added to the end of this post.&nbsp;</p>\n\n\n\n<p>A big thank you to everyone who helps make WordPress. Contributors power every WordPress release. Without the hundreds of contributors worldwide who help build WordPress, this live product demo wouldn’t have been possible. Thank you for all of your hard work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">References from the Live Demo</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/comparing-patterns-template-parts-and-reusable-blocks/\">Comparing Patterns, Template Parts, and Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">The 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support for PHP 5</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">Internationalization Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/30496\">#30496 Site Editor: MVP Customizer Compatibility/Integration</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/52128\">#52128 Customization Ongoing Roadmap</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/building-sidebars-with-the-site-editor/\">Building sidebars with the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>Props to <a href=\'https://profiles.wordpress.org/richtabor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>richtabor</a> and <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> for reviewing this post and to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, and <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> for their logistics support to run the event.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2023 17:08:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15431\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"WordPress 6.3 RC1 is ready for download and testing. Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11307:\"\n<p>WordPress 6.3 RC1 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC1 on a test server and site.&nbsp;</p>\n\n\n\n<p>Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, and review the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>. Save the date for a <a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">live product demo</a> scheduled for Thursday, July 20, 2023, at 16:00 UTC (<a href=\"https://us02web.zoom.us/j/88141234315?pwd=TE1Odk5Wd0hiVlNYWHB5Q2xCYkhSZz09\">Zoom link</a>). This live demo will be a great opportunity to join the WordPress community to celebrate the accomplishments of 6.3 and this final chapter of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC1 highlights</h2>\n\n\n\n<p>Thanks to the many WordPress beta testers, this release contains 40+ (Editor) and 80+ (Trac) updates since the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-4/\">Beta 4 release</a>. Keep it up WordPressers!</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>WordPress database error when installing PHPUnit tests (<a href=\"https://core.trac.wordpress.org/ticket/58673\">#58673</a>)</li>\n\n\n\n<li>Use <code>_get_block_template_file</code> function and set $area variable (<a href=\"https://github.com/WordPress/gutenberg/pull/52708\">#52708</a>)</li>\n\n\n\n<li>Indicate when a theme supports the Site editor in the Themes REST API response (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58123\" target=\"_blank\">#58123</a>)</li>\n\n\n\n<li><code>bulk_edit_posts()</code> function needs an action hook (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/28112\" target=\"_blank\">#28112</a>)</li>\n\n\n\n<li>Allow editing existing footnote from formats toolbar (<a href=\"https://github.com/WordPress/gutenberg/pull/52506\">#52506</a>)</li>\n\n\n\n<li>Patterns: Add client side pagination to patterns list (<a href=\"https://github.com/WordPress/gutenberg/pull/52538\">#52538</a>)</li>\n\n\n\n<li>Trim footnote anchors from excerpts (<a href=\"https://github.com/WordPress/gutenberg/pull/52518\">#52518</a>)</li>\n</ul>\n\n\n\n<p>Browse the technical details for issues addressed since Beta 4 using these queries:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">GitHub commits for 6.3</a></li>\n\n\n\n<li>Closed <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F11%2F2023..07%2F18%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac tickets</a> since July 11</li>\n</ul>\n\n\n\n<p>For a recap of what’s coming in 6.3, please refer to the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">Beta 2 post</a>, which summarizes key features.</p>\n\n\n\n<p>You can also dig into technical information about various components in 6.3:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>For a compilation of the dev notes above and more, read the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a>.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Test the new features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC1</h2>\n\n\n\n<p>You can test WordPress 6.3 RC1 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC1.zip\">RC1 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC1</code></li>\n</ul>\n\n\n\n<p>The current target for the final release is <strong>August 8, 2023</strong>, about three weeks away. Your help testing this version ensures everything in this release is the best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Chances are, you have already been testing your latest themes and plugins with WordPress 6.3 betas. With RC1, you will want to complete your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.3 release cycle.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC1</h2>\n\n\n\n<p>RC1 is here<br>Hold your applause ‘til the end<br>Download, test, repeat</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a>, <a href=\"https://profiles.wordpress.org/meher/\"><em>@Meher</em></a>, and <a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15431\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WP Briefing: Episode 60: Sneak a Peek at WordPress 6.3 with Special Guest Mike Schroder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jul 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15398\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"Join WordPress Executive Director Josepha Haden Chomphosy and Core Tech Lead Mike Schroder as they discuss their favorite new features and enhancements coming in WordPress 6.3.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/07/WP-Briefing-060.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:31362:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy and Core Tech Lead Mike Schroder as they discuss their favorite new features and enhancements coming in WordPress 6.3.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Guests: <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/6-3/\">WordPress 6.3 Development Cycle and Release Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3:&nbsp;Rollback&nbsp;for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the power of Patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement: Smoother Site Editing</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/#text-blocks-now-with-footnotes\">Text blocks: now with footnotes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/?s=%22details+block%22#details-block\">The Details block is now stable</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/wcus-2023-contributor-day-help-needed/\">WCUS 2023 Contributor Day: Help Needed!</a> &#8211; The WordCamp US Contributor Team is asking for help with their new approach to organizing this year’s Contributor Day.</li>\n\n\n\n<li>Watch the <a href=\"https://us.wordcamp.org/2023/news/\">WCUS News page</a> for a call for open-source-related art, poetry, and music.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/category/releases/\">WordPress Releases</a> &#8211; Find WordPress 6.3 RC1 and other releases.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/06/16/celebrating-the-completion-of-the-meetup-reactivation-project/\" target=\"_blank\">Celebrating the Completion of the Meetup Reactivation Project</a></li>\n</ul>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">WP Diversity Workshop for WordPress event organizers</a> &#8211; Join this 2.5-hour interactive watch party online on July 20, 2023, to learn how to create welcoming and diverse WordPress&nbsp;Meetups&nbsp;and WordCamps for your WordPress community.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">6.3 Live Product Demo</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<span id=\"more-15398\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<p><em>( Intro music )</em></p>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><em>( Intro music continues )</em></p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong> We have with us Mike Schroder. They are on the WordPress 6.3 release squad, and I believe, Mike, that your role there is the Core Tech Lead.</p>\n\n\n\n<p>Is that right?</p>\n\n\n\n<p>[00:00:50] <strong>Mike:</strong> Yeah, that&#8217;s correct. I&#8217;m one of the tech leads along with Andrew Ozz and David Baumwald.</p>\n\n\n\n<p>[00:00:56] <strong>Josepha:</strong> Thank you so much for being able to join me today.</p>\n\n\n\n<p>[00:00:58] <strong>Mike:</strong> Thanks for inviting me.</p>\n\n\n\n<p>[00:01:00] <strong>Josepha:</strong> This is our 6.3 sneak peek, and so it has a little bit of a &#8220;What do you wish people knew about the upcoming release?&#8221; aspect to it, but it also has like a &#8220;What do we find most interesting about the work that we&#8217;ve been doing in this release so far?&#8221;</p>\n\n\n\n<p>As the Core Tech Lead, what currently is like your favorite thing that y&#8217;all are getting into the release or the thing that&#8217;s the most interesting or happiest to finally be done with it?</p>\n\n\n\n<p>[00:01:27] <strong>Mike:</strong> Yeah, I think there are a couple of things. So I was playing around with the release in anticipation for this, and one of the favorite sort of user-facing features that I played with was the live preview for Block themes. And it just makes it feel so intuitive to open up a new Block theme and play around with Styles and different designs and see how it looks.</p>\n\n\n\n<p>I really enjoyed it, opened it up on my personal site and started messing around with different color palettes and things like that, and it was a lot of fun.</p>\n\n\n\n<p>[00:01:55] <strong>Josepha:</strong> Like it&#8217;s a live preview, but also with all of the content they already have on your site.</p>\n\n\n\n<p>[00:01:59] <strong>Mike:</strong> It does use the templates and so it, it shows some of the live content from the from the homepage, for instance, and some of those blocks, and some of the other areas are editing the templates rather than the live content. But yes, it was neat to play around with it and see my blog content in the background and yeah, some real-time design. That was really fun.</p>\n\n\n\n<p>[00:02:20] <strong>Josepha:</strong> And has that been a big focus of the release? Was it something that you and the other Tech Leads both for the Core side and the Editor side just had to focus a lot on in this round of the release?</p>\n\n\n\n<p>[00:02:33] <strong>Mike:</strong> So I was not a part of a lot of that work. So I&#8217;m not gonna take credit for it. I think that is the culmination, all of those different things together of a lot of the things that the Editor team has been working on for some time. And it was just, it was really refreshing to see it.</p>\n\n\n\n<p>The other feature that I had in my head, if it&#8217;s okay for me to talk about a second one, is something that has been trying to get landed in Core for quite some time, and that has to do with automatic rollbacks. If plugin updates or theme updates start to happen and then they fail in the middle of that update, then it will automatically restore the previous version of the plugin or theme. And that&#8217;s a pretty big improvement over the previous behavior, which could result not as well.</p>\n\n\n\n<p>[00:03:16] <strong>Josepha:</strong> Right. Where you would just have a site that was like, &#8220;Best of luck to you,&#8221; and emails that told you what kind of probably was broken. I shouldn&#8217;t be sassy about that. The WSOD protection that we put in really was a huge leap forward for the way that we handled that in the past, but this is great news.</p>\n\n\n\n<p>[00:03:34] <strong>Mike:</strong> Yes, I was so excited when that landed, and this is I guess the next part of that. And it&#8217;s been, yeah, it&#8217;s been in the works for a long time, through testing and there was an entire team that did a lot of work on it in a future plugin. And I&#8217;m very excited to see it land.</p>\n\n\n\n<p>[00:03:49] <strong>Josepha:</strong> That&#8217;s great. That&#8217;s one of those things that we hope a WordPress user never has to know exists. Like it&#8217;s always our hope that the plugins work perfectly and the themes work perfectly. And so unless something is going really wrong you won&#8217;t know that&#8217;s a feature. Surely it tells you like, &#8220;This didn&#8217;t update by the way. Go figure that out.&#8221;</p>\n\n\n\n<p>[00:04:08] <strong>Mike:</strong> Yeah, the whole idea of this particular feature is to make it feel more like everything is smooth and one site continues to work, and the underpinning of it has been going in for a couple of releases. The whole idea is to make the experience more smooth for users.</p>\n\n\n\n<p>[00:04:21] <strong>Josepha:</strong> Cool. That auto rollback actually was not on my radar as a thing to keep an eye out for in this release, so that&#8217;s really neat. One of the things that I saw as I was doing, I don&#8217;t do any complicated testing. I mostly do like testing of what users would expect with the workflow with my eyeballs and a mouse.</p>\n\n\n\n<p>[00:04:40] <strong>Mike:</strong> Well, that&#8217;s, that&#8217;s wonderful.</p>\n\n\n\n<p>[00:04:42] <strong>Josepha:</strong> I&#8217;m not doing any of the fancy testing with like code, but one of the things that I saw as I was working through my general, just regular test, my spot check click around test was that it looks like there&#8217;s some consolidation, some consolidation of the navigation in the Editor.</p>\n\n\n\n<p>So, it had I think maybe Pages and Templates in there before, and now there are five things in there. Do you have a bit of a concept of what went into that, what we&#8217;re hoping everybody&#8217;s gonna be able to accomplish there now?</p>\n\n\n\n<p>[00:05:13] <strong>Mike:</strong> So I, I was not involved as much in the later stages of this, but I was in a couple of the first couple iterations of this particular feature, and I think this is, I don&#8217;t want to guess the exact amount of times that this has been sort of reworked so the experience is good for users, there been so much effort that&#8217;s gone into helping navigation be a comfortable experience for people to work with within the site editor.</p>\n\n\n\n<p>And what I have heard is that everyone that&#8217;s worked on it is very excited that it&#8217;s landing and that users will be able to experience it and more easily work with navigation.</p>\n\n\n\n<p>[00:05:46] <strong>Josepha:</strong> Yeah, I think that navigation is one of those things, both like creating good navigation as a software designer, but then also as somebody who&#8217;s like putting together a website. Good navigation is hard to do. And it&#8217;s design where everyone&#8217;s, &#8220;Good design is invisible,&#8221; and we don&#8217;t actually mean that.</p>\n\n\n\n<p>We don&#8217;t mean it&#8217;s invisible. We mean it&#8217;s not intrusive, it doesn&#8217;t get in your way, it acts in the way you think it&#8217;s going to act, and it knows or has a good guess about where you&#8217;re trying to be, what you&#8217;re trying to do in that particular moment on a site. And so like the fact that we&#8217;ve had probably hundreds of people working on navigation inside the software is no surprise to me, but I bet it&#8217;s gonna be a surprise to a lot of people.</p>\n\n\n\n<p>They&#8217;ll be like, &#8220;It&#8217;s like folders, right?&#8221; Turns out it&#8217;s not.</p>\n\n\n\n<p>[00:06:33] <strong>Mike:</strong> Yes, it was, incredibly, incredibly difficult to design. I know there was, the couple instances that I was most involved with, I know there was so much discussion about how folks are used to working with navigation within WordPress and sort of what expectations are for menus and what expectations are for, you know, users both that have been using WordPress for a long time and users who, who are new to WordPress, and the Site Editor. And having all of those considerations from the various stakeholders just makes it a really difficult design problem.</p>\n\n\n\n<p>[00:07:03] <strong>Josepha:</strong> Yeah, absolutely. And I mean, not for nothing like the WP Admin itself, that dashboard inside the WordPress software, like that&#8217;s been due for an update for quite some time. This is the same one that I think we&#8217;ve had since 2008, which was also very disruptive in its way. And so like it was a good disruption, but we really haven&#8217;t made any substantial changes to it since then. And part of it is because there are so many use cases for WordPress, and we don&#8217;t have a good concept of that because we don&#8217;t have a lot of tracking in the software. We don&#8217;t take anyone&#8217;s like data about what field they work in. We don&#8217;t do any of that.</p>\n\n\n\n<p>And so it&#8217;s hard for us to account for all of the use cases and get a really excellent design for a majority of the people that are gonna be using it. Because like we don&#8217;t actually build software for robots around here. Not yet.</p>\n\n\n\n<p>[00:07:54] <strong>Mike:</strong> <em>( laughs )</em> Yeah.</p>\n\n\n\n<p>[00:07:55] <strong>Josepha:</strong> No, I don&#8217;t think we&#8217;ll ever be robot-building software.</p>\n\n\n\n<p>[00:07:57] <strong>Mike:</strong> I doubt it, but I also don&#8217;t wanna predict the future. No, I agree. And I think that is absolutely one of the super tricky things about building WordPress. I&#8217;m really glad that WordPress doesn&#8217;t collect any of that data. And it makes it so that the sort of testing that, that you were talking about, in user studies and things like that, are incredibly helpful for figuring out what the best approaches are.</p>\n\n\n\n<p>[00:08:21] <strong>Josepha:</strong> Yeah, absolutely. Since we&#8217;re just in the zone of like things that Josepha likes and that she saw, I&#8217;m gonna also do this other thing. In one of the last couple of releases, the Style Book came out, which was such an exciting thing for me. It&#8217;s great to be able to see whether or not all of the style choices you&#8217;ve made in various parts of the admin or in the code, depending on how you&#8217;re doing things.</p>\n\n\n\n<p>It&#8217;s nice to make sure, in one big set, that like everything is coherent. Everything that you thought you changed did get changed and it looks the way that you wanted it to look in concert with everything else in there. And it looked like we now have revisions specific to styles, like styling things across the site, have revisions.</p>\n\n\n\n<p>Is that right?</p>\n\n\n\n<p>[00:09:06] <strong>Mike:</strong> That&#8217;s correct.</p>\n\n\n\n<p>[00:09:07] <strong>Josepha:</strong> I think that&#8217;s a super big deal because as somebody who is just, I&#8217;m filled with techno joy. I don&#8217;t always want to look at a manual. I just want to do stuff until it breaks and then hope I can fix it. The hoping you can fix it part <em>( laughs )</em> can sometimes be really nerve-wracking if what you&#8217;re doing is creating a site for a client or you are working on your first big theme and you wanna make sure that&#8217;s all together.</p>\n\n\n\n<p>And so style revisions to go along with some of the Editor revisions I think is a great change.</p>\n\n\n\n<p>[00:09:39] <strong>Mike:</strong> Same. Absolutely. This is not a feature I have, done too much particular playing with, at this point.</p>\n\n\n\n<p>[00:09:44] <strong>Josepha:</strong> You&#8217;re a very skilled developer.</p>\n\n\n\n<p>[00:09:46] <strong>Mike:</strong> I appreciate that. That&#8217;s very kind. I think that adding revisions to anything that folks regularly change in posts or pages is, really important. And making it very easy to get to both make forward changes and also to realize, &#8220;Oh, there was this other change that was, you know, there was three clicks ago that I really loved. How do I get back to that? How do I see the history?&#8221; And that&#8217;s what I love about that sort of feature. Being able to really easily see, &#8220;Okay, when did this happen? In what series? How can I jump back and get to that spot that felt right.&#8221;</p>\n\n\n\n<p>[00:10:19] <strong>Josepha:</strong> Yes. Anytime that we can have that kind of historical layering of things, I think is good. I went to a meetup. I like to go to meetups that are 101 content, because that&#8217;s like the folks that really need new refined processes the most. But I went to a 101 meetup a couple years back, and I remember that the presenter was saying like, take a theme that you pretty much like and make some changes until you have a theme that you love.</p>\n\n\n\n<p>And people kept saying like, &#8220;Yeah, but what if I break everything?&#8221; And he said in the middle of that to everyone, not knowing who I was because who cares? He was like, &#8220;Yeah, WordPress is not gonna let you do anything that will completely destroy a theme or completely destroy your site. There&#8217;s an undo button and you can just undo it. It&#8217;ll be fine.&#8221; And I was like, &#8220;Yeah, that is true now.&#8221;</p>\n\n\n\n<p>[00:11:15] <strong>Mike:</strong> I love that.</p>\n\n\n\n<p>Gosh. I mean, I remember when I was playing with my first WordPress site, and even to make really small changes with navigation or with menus, I had to go in and make changes to the PHP code, and none of that was protected.</p>\n\n\n\n<p>[00:11:31] <strong>Josepha:</strong> You&#8217;re like, &#8220;This is free-range me out here.&#8221;</p>\n\n\n\n<p>[00:11:34] <strong>Mike:</strong> I love, absolutely. I love that is just no longer the case anymore and it&#8217;s super easy to go in and play with a theme and make changes without worrying about any of that. And, I mean, I may be a developer, but that&#8217;s the way I would prefer. That&#8217;s the way I go in and edit my sites now too.</p>\n\n\n\n<p>If I wanna mess with a theme, go in, and it was the Customizer and now it&#8217;s the Site Editor, and it&#8217;s great.</p>\n\n\n\n<p>[00:11:58] <strong>Josepha:</strong> Yeah, it&#8217;s a leap forward, I think, leap forward.</p>\n\n\n\n<p>So another thing that I ran into, I guess it&#8217;s two things that I ran into while I was wandering around in there recently, and it&#8217;s possible that I ran into these two things because I just personally love them the most, but the Footnotes block looks like it is potentially going to land.</p>\n\n\n\n<p>I have been so excited about this block for no reason. I have dreams about it. I wish that were not a true statement. I did recently have a dream about it. I dreamt that it didn&#8217;t land in the release, and that I went to talk to Ella about it and she was like, &#8220;Oh, yeah, publishers have given up on footnotes and they&#8217;re just doing end notes now, and so I decided not to ship it.&#8221; Like this is a dream I had.</p>\n\n\n\n<p>And so I&#8217;m a little worried, but tomorrow I&#8217;m gonna be like, &#8220;Hey, Ella, friend, what&#8217;s happening?&#8221; And she&#8217;s gonna be like, &#8220;Yeah, end notes are where it&#8217;s at.&#8221;</p>\n\n\n\n<p>And then the other block that I&#8217;m personally very excited about is what I like to call the &#8220;Spoilers block.&#8221; I know it is not &#8220;Spoilers&#8221;, it&#8217;s the called &#8220;Details,&#8221; but anytime I&#8217;ve ever used that after like early, early times in my career, early in my career, I used to call them accordions and I don&#8217;t know why, but now I call them &#8220;Spoiler blocks.&#8221; But I know it&#8217;s actually called the &#8220;Details block,&#8221; where you can put in a piece of information at the top, essentially a title, and then expand it to get more information in there.</p>\n\n\n\n<p>So are both of those actually gonna land or am I gonna be heartbroken?</p>\n\n\n\n<p>[00:13:24] <strong>Mike:</strong> As far as I&#8217;m aware, yes. I know that I haven&#8217;t checked recently on the latter, but I was just playing with the Footnotes block, and it&#8217;s really cool. I really like the interface. I think that it makes it really simple to add quick footnotes to, anywhere in the site, and everything feels very automated and simple.</p>\n\n\n\n<p>[00:13:46] <strong>Josepha:</strong> As someone who every, almost everything that I&#8217;ve ever written, I want to have an aside in it, which essentially just becomes a footnote. One of the weirdest parts about Gutenberg at first is that like, the asterisk way of doing it, where you just put one after the word and then put one at the start. The asterisk makes it into a list block, and for a long time you also couldn&#8217;t escape it, and so I had to do a lot of fancy footwork to get my footnotes to work for a while, and so I&#8217;m excited for that.</p>\n\n\n\n<p>[00:14:15] <strong>Mike:</strong> I think I had similar discouraging moments with lists and I was really encouraged by the way the footnotes select, and I&#8217;m sure there are other ways to do it too, but select, right-click, footnote, and they all automatically go to the bottom order, all of it. It&#8217;s a really smooth process.</p>\n\n\n\n<p>[00:14:31] <strong>Josepha:</strong> Yeah. I&#8217;m really excited about it. I know that like for the last two or three major releases, a bulk of what we&#8217;ve been offering to folks is like, design stuff, and we&#8217;re just like, &#8220;It&#8217;s a bunch of design things,&#8221; but this release actually has over 500 different tickets that were marked as features or enhancements that are going into it.</p>\n\n\n\n<p>And so, you and I have talked about seven things so far, but I also understand that there are literally 500 tickets or so that were marked as &#8220;feature&#8221; or &#8220;enhancement.&#8221; And so we are definitely not gonna catch everything that goes in there, but there is kind of a group of another group of enhancements to the design tools because of course this wraps up the bulk of phase two so that we can all move into the collaborative editing phase.</p>\n\n\n\n<p>And so like, do you have a sense for, like is this just mostly polish for those design and like image media management kinds of things? Or are there big features that are coming in those also?</p>\n\n\n\n<p>[00:15:29] <strong>Mike:</strong> My understanding is that it&#8217;s all of the above. I think that there are a lot of new features being added along with polish to those features. And I think the neatest thing is that there are also a lot of enhancements that are focused on bringing all of those things together and making it feel like more of a connected experience. And so I think that&#8217;s my favorite part so far in testing that I&#8217;ve been doing of, the many, as you mentioned, so many additional new features that, that we&#8217;re added this time. And, I have a huge amount of respect for, you know, everyone that works, for the huge amount of folks that work on it across the project.</p>\n\n\n\n<p>[00:16:07] <strong>Josepha:</strong> Yeah. Yeah, you&#8217;ve given a couple of answers where you were like, &#8220;I wasn&#8217;t personally involved in that,&#8221; but on the one hand, I was like, &#8220;Everyone knows that we&#8217;re not all personally involved in it,&#8221; but on the other hand, not everybody knows how many people touch all of these tickets and features and bugs and tests as we get them ready to be put into the release.</p>\n\n\n\n<p>Last year, I was super worried that like, post active fear of Covid, and now everyone just like deciding that they&#8217;ve done their best and they&#8217;re going back out there. Like I was really worried that everyone was gonna be having so much fun out of the house, that they would stop contributing.</p>\n\n\n\n<p>[00:16:43] <strong>Mike: </strong><em>( laughs )</em></p>\n\n\n\n<p>[00:16:44] <strong>Josepha:</strong> I know, but we actually had one of our most active years for contributors last year, which means that especially for the releases that are coming this year, the people who worked all the way through last year, like almost 2000, I think, contributors, just to code, that&#8217;s not even like the contributors who worked on reigniting the community and putting together events, all of those things like all of the other things that we do.</p>\n\n\n\n<p>It&#8217;s, it is remarkable to me that when we look at any feature it is definitely been looked at or worked on, or at least passed through desks of easily a hundred people, even for small little things. And I just love that, the depth of the work we do.</p>\n\n\n\n<p>[00:17:29] <strong>Mike:</strong> Absolutely. Same. I remember wondering about that too, about your same sort of concerns. And it&#8217;s been really great to be a part of the community as it&#8217;s essentially, as it&#8217;s grown together again, I think is maybe the best way I can think of to say it. That&#8217;s been quite wonderful.</p>\n\n\n\n<p>[00:17:46] <strong>Josepha:</strong> Yeah, absolutely. Mike, this has been an absolutely delightful conversation. Is there anything you would like to leave us with before we move on to our small list of big things today?</p>\n\n\n\n<p>[00:17:58] <strong>Mike:</strong> The release candidate for 6.3 comes out tomorrow, and what I would love the most is if anyone in interested in testing, anyone, whether it&#8217;s testing exactly like this sort of testing that you were just talking about, with loading the RC and clicking around and seeing what works the best and what doesn&#8217;t work and what feels good and what doesn&#8217;t, or if it&#8217;s testing, if you&#8217;re like a plugin or a theme developer, testing with those things to see how things work and looking for backwards compatibility breaks that are unexpected so we can fix them before release.</p>\n\n\n\n<p>If you work at a hosting company or you make sites for folks, helping test that to see that it works really well on your platforms for folks that you work with. I think all of those would be super helpful, and there are testing instructions that can be found on the release candidate announcement page.</p>\n\n\n\n<p>[00:18:43] <strong>Josepha:</strong> Perfect. Wonderful. Mike, thank you so much for joining me today.</p>\n\n\n\n<p>[00:18:47] <strong>Mike:</strong> Thank you so much. I&#8217;ve really appreciated the time.</p>\n\n\n\n<p><em>( Musical interlude )</em></p>\n\n\n\n<p>[00:18:49] <strong>Josepha:</strong> That brings us now to our small list of big things. It&#8217;s actually kind of a big list of big things today. So first on the list is that WordCamp US has a Contributor Day and we need your help. So the WordCamp US Contributor Team has contacted all of the team reps asking for help with a new approach to organizing this year&#8217;s Contributor Day.</p>\n\n\n\n<p>The hope is to make the initial steps to contribution easier. And so they&#8217;re asking teams who will be present to help participate with that process. I will have a link in the show notes to the post that has more information.</p>\n\n\n\n<p>Also second thing related also to WordCamp US is that I would like to put out a call for art and music, especially that is related to open source and the freedoms that it brings. So one of the things that makes WordPress so fantastic in the world is not only that like we&#8217;re creating opportunities for folks, we&#8217;re offering economic, and I don&#8217;t know, philosophical freedoms to people, but we frequently do think about that in the vein of, you know, commerce and work and the economy, and we rarely think about it in the obviously related subset of arts and music. And so I also would like to put out a call for any open source related arts or poetry or music that you all have created.</p>\n\n\n\n<p>I would love to be able to display some of that at WordCamp US this year. I don&#8217;t think I have a link quite yet for a call for that, but as soon as I do, I&#8217;ll send it out on social media and other places.</p>\n\n\n\n<p>The third thing on our small list of big things is that, as Mike mentioned, tomorrow is the RC1 release date for WordPress 6. 3, and you can help us to test that.</p>\n\n\n\n<p>It&#8217;s always good for us to test any release as it&#8217;s working its way through the process, but certainly by the time it gets to RC, that&#8217;s when we are pretty sure it&#8217;s going to be as stable as possible. We&#8217;ve done some soft string freezes and feature freezes-ish. And so that&#8217;s about as stable as it&#8217;s going to get. And so I encourage everyone to get out and test that as much as possible. And in all the ways that Mike shared.</p>\n\n\n\n<p>Item number four, we are also reaching a milestone. So, a couple weeks ago, we reached the one year milestone for the start of the Meetup Reactivation Project.</p>\n\n\n\n<p>We have about 50% of our Meetup groups reactivated. If you are listening to this and you are a Meetup organizer and you haven&#8217;t heard from anyone from WordCamp Central or the community team, I&#8217;m going to put a link to the notes, or rather, a link to the post in the notes so that you can also learn more about that.</p>\n\n\n\n<p>You don&#8217;t have to hear from us in order to get your meetup group going again. But, if you are interested to know what has gone into that process, or always just want to know what&#8217;s going on in the community side of things, that&#8217;s a good place to start. So there will be a link to that in the show notes as well.</p>\n\n\n\n<p>Number five, WordPress event organizers in general, but also anyone. So there are two different events coming up on Thursday, on July 20th.</p>\n\n\n\n<p>First, there is the WP Diversity Workshop. This is added workshop for us to help promote the ideas of building diverse and inclusive WordPress events. And so, this is not necessarily one of those events for people who want to increase their skills in speaking so that they are able to, to speak confidently at a WordPress event. These are for people who are organizing WordPress events and want to make them more inclusive and more diverse from the start. I encourage any organizer to go to it, regardless of whether you&#8217;re doing WordPress events or not, but certainly for WordPress events that is something that we care about and want to have included in our entire event series.</p>\n\n\n\n<p>The other thing that&#8217;s happening on Thursday, because like I said, two things happening on Thursday, is that we have a WordPress 6. 3 live product demo. We&#8217;ve been doing these for the last few releases, and you get a couple of people from either the release squad, or like folks who do that kind of developer relations work in WordPress, who sit down and just do a general click-through, a general run through, a public demo of what we expect to land in the release.</p>\n\n\n\n<p>And so that also is on Thursday. I will also have a link for you in the show notes. If you are listening to this not on WordPress.org and you don&#8217;t know where the show notes are, don&#8217;t worry. The show notes are on WordPress.org. You go to WordPress.org/news/podcast and in the transcript there are show notes that have links to all of these things.</p>\n\n\n\n<p>And that, my friends, is your big, small list of big things. Thank you for tuning in today for the WordPress Briefing. Thank you again for my guest, Mike&#8217;s, time. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p><em>( Outtro music )</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15398\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Designed with WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2023/07/designed-with-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2023 22:33:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15401\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"The Gutenberg project has aimed to revolutionize how we manage web content as much as Johannes Gutenberg did the printed word. The project&#8217;s roadmap is comprised of four unique phases: With the upcoming release of WordPress 6.3, Phase 2 of the Gutenberg project is coming to a close; a journey worth celebrating. This video is [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4271:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"812\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=1024%2C812&#038;ssl=1\" alt=\"\" class=\"wp-image-15421\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=1024%2C812&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=300%2C238&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=768%2C609&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a> project has aimed to revolutionize how we manage web content as much as <a href=\"https://en.wikipedia.org/wiki/Johannes_Gutenberg\">Johannes Gutenberg</a> did the printed word. The project&#8217;s <a href=\"https://wordpress.org/about/roadmap/\">roadmap</a> is comprised of four unique phases:</p>\n\n\n\n<ol>\n<li>Easier Editing — Already available in WordPress, with ongoing improvements</li>\n\n\n\n<li>Customization — Full site editing, block patterns, block directory, block themes</li>\n\n\n\n<li>Collaboration — A more intuitive way to co-author content</li>\n\n\n\n<li>Multilingual — Core implementation for Multilingual sites</li>\n</ol>\n\n\n\n<p>With the upcoming release of WordPress 6.3, Phase 2 of the Gutenberg project is coming to a close; a journey worth celebrating.</p>\n\n\n\n<p>This video is an ode to Gutenberg&#8217;s editing and customization phases, celebrating the new design tools and the possibilities they create. The piece encapsulates the exciting steps made in the past that propel the vibrant future of WordPress.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/FcTLMTyD2DU?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Everything showcased in the video is built entirely with the WordPress Editor, using currently available blocks, patterns, and themes. This new era has opened the ability for the design community to contribute to the project directly without depending on developers to translate their ideas into designs. Consider this an invitation for designers to join a new generation that embraces the diverse and expressive capabilities of WordPress.</p>\n\n\n\n<p>The work that goes into Gutenberg is a powerful testament to the collaboration of coders, developers, and designers in our community. United, we strive to build WordPress into a realm of significance and lasting impact.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Video credits</h2>\n\n\n\n<p><strong>Video credits:</strong> <a href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/iamarinoh/\">Henrique Lamarino</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, and Holographik. </p>\n\n\n\n<p><i>Thank you to the post authors </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a><i>, </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><i>, </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a><i>, </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <em>and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 10 Aug 2023 04:54:32 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 08 Aug 2023 23:38:54 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 8\";}}s:5:\"build\";s:14:\"20230418100512\";}','no'),(20746,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1691686473','no'),(20747,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1691643273','no'),(20748,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1691686474','no');
INSERT INTO `wp_options` VALUES (20749,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"WPTavern: WordPress Plugin Review Team Addresses Backlog of 900+ Plugins, Implements Strategies to Improve Approval Process\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147639\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"https://wptavern.com/wordpress-plugin-review-team-addresses-backlog-of-900-plugins-implements-strategies-to-improve-approval-process\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4003:\"<p>WordPress&#8217; Plugin Review team is wading through a backlog that was over 900 plugins awaiting approval earlier this week. The current count has 870 plugins sitting in the <a href=\"https://wordpress.org/plugins/developers/add/\">review queue</a>, with an average wait time of 61 days before initial review.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1856\" height=\"388\" />\n\n\n\n<p>WordPress developer Marcus Burnette <a href=\"https://twitter.com/marcusdburnette/status/1688961018943221778\">drew attention to the matter on Twitter</a> after submitting a plugin he created to display a gallery of your own WordPress Photo Directory photos on your website. Other developers commented on his post, reporting that their recently-approved plugins took two months.</p>\n\n\n\n<p>WordPress Executive Director Josepha Haden Chomphosy responded with an invitation to contributors who want to learn how to review plugins and <a href=\"https://make.wordpress.org/plugins/handbook/apply/\">apply to join the team</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">There\'s an open application for anyone who wants to learn how to review these plugins and help us chip away at the backlog! <a href=\"https://t.co/nDF3tiOuvH\">https://t.co/nDF3tiOuvH</a> <a href=\"https://t.co/28lrCFtx4U\">https://t.co/28lrCFtx4U</a></p>&mdash; Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1688983991792078848?ref_src=twsrc%5Etfw\">August 8, 2023</a></blockquote>\n</div>\n\n\n\n<p>The volunteer team responsible for reviewing plugins has undergone significant restructuring after the departure of long-time contributor Mika Epstein. In June, the team <a href=\"https://wptavern.com/wordpress-plugin-review-team-adds-6-new-sponsored-volunteers-opens-applications\">added six new sponsored volunteers</a> and opened applications for more team members. They have selected new team reps and have more than 20  applicants who have expressed interest in volunteering.</p>\n\n\n\n<p>&#8220;The first challenge we found during our onboarding was the fact that a lot of processes were not clearly documented,&#8221; newly selected team rep Francisco Torres said in a recent <a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">update</a>. &#8220;We asked A LOT of questions during this process and ensured that all the answers Mika shared with us were added to the team’s internal docs. This effort should make it a lot easier for new contributors to join the team down the road.</p>\n\n\n\n<p>&#8220;We have also improved our internal tools to catch the most common coding mistakes and have built our predefined responses into the output provided by this tool. We still review this content manually before sending out replies, but by merging the two tasks into one (reviewing the code and drafting the message) we have been able to cut down review time considerably.&#8221;</p>\n\n\n\n<p>In strategizing ways to cut through the formidable plugin backlog, the team has begun speeding up the process by performing a cursory initial review, followed by a more thorough one once the plugin author has fixed the most obvious issues.</p>\n\n\n\n<p>&#8220;In order to tackle the backlog faster, we’re now spending less time on initial reviews,&#8221; Torres said. &#8220;We begin checking issues that take us less time, and then as soon as we spot one or two issues with the plugin that would prevent it from being approved, we email the plugin author to ask them to fix the initial issues. If the author gets back to us with those first fixes, then we proceed with an in-depth review.&#8221;</p>\n\n\n\n<p>A two-month wait can be demoralizing for developers who are excited to share their open source plugins with the world. Now that the whole process is getting documented and refined to be more efficient, the Plugin Review Team will be better able to onboard new reviewers and put them in place to tackle the backlog. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Aug 2023 01:39:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Kadence Blocks 3.1.11 Patches Critical Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147644\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/kadence-blocks-3-1-11-patches-critical-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1925:\"<p>The <a href=\"https://wordpress.org/plugins/kadence-blocks/\">Kadence Blocks</a> plugin, which is used on more than 300,000 WordPress sites, has patched a critical vulnerability in its Advanced Form Block file upload capability. Version 3.1.11, released on August 8, 2023, patches the security issue with the form uploads.</p>\n\n\n\n<p>The plugin&#8217;s development team is getting out ahead of the situation by posting an <a href=\"https://www.kadencewp.com/blog/kadence-blocks-3-1-11-includes-patch-for-critical-vulnerability/\">advisory</a> on their blog, with a short description of the vulnerability and its potential for exploit.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The Kadence Advanced Form Block, introduced in Kadence Blocks 3.1, offers site owners the ability to add a file upload capability to their site. The code within the Advanced Form Block had insufficient tests to limit what types of files can be uploaded. This could allow attackers to upload a file claiming to be a valid image type that actually contained malicious PHP code. That PHP code could be malicious, and in so doing, take over a vulnerable WordPress website. Exploiting this vulnerability would require a settings at the server level that would be considered insecure. Most premium hosting providers secure upload folders from PHP execution at the server level, though many budget hosting providers do not.</p>\n</blockquote>\n\n\n\n<p>Kadence Blocks developer Ben Ritner said sites that are not using the Advanced Form Block file upload capability are not subject to this vulnerability. At this time the vulnerability is not known to have been exploited.</p>\n\n\n\n<p>Kadence Blocks users are encouraged to update immediately and check for unexpected users, admin accounts, and content changes. The advisory also includes ways to make file uploads more secure, including limiting file type, adding authentication, and scanning for viruses.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 20:36:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Post Status: WordPress 6.3 • Release Workflows • European Union Cyber Resiliency Act • Gutenberg Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18999:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.3, Lionel, has been released. It&#8217;s time to test out the details and footnotes blocks, give the <code>WP_DEVELOPMENT_MODE</code> a try, and check out the new Get Involved tab on the Welcome screen. <br /><br />The WordPress Training team announces its first course cohort for <a href=\"https://Learn.WordPress.org\">Learn.WordPress.org</a>. The course will cover Developing Your First WordPress Block, and offer real-time collaborative learning. <br /><br />In December of 2021, Log4j vulnerability sparked governmental-level decision-making implications in the EU (<a href=\"http://digital-strategy.ec.europa.eu/en/library/cyber-resilience-act\">Cyber Resiliency Act</a>) and USA (<a href=\"https://cisa.gov/sbom\">SBOM</a>). WordPress, Drupal, Joomla, and Typo3 have shared concerns regarding  the EU CRA. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_rocket kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, 1st LearnWP Cohort, EU CRA</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f195.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-1f3fd-200d-1f3eb.png\" alt=\"??‍?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f510.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/contribute\">Contribute</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7\">\n<div class=\"wp-block-column is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/07/matrix-test-results/\">Matrix Test Results</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">WordPress 6.3 performance improvements</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/styling-blocks-empowering-users-with-css-custom-properties/\">Styling blocks: empowering users with CSS custom properties</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/09/dev-chat-agenda-august-9-2023/\">Dev Chat agenda, August 9, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/editor-chat-agenda-9-august-2023/\">Editor Chat Agenda: 9 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/documentation-team-update-august-7-2023/\">Documentation Team Update – August 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/08/performance-chat-summary-8-august-2023/\">Performance Chat Summary: 8 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/plugin-review-team-7-august-2023/\">Plugin Review Team: 7 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/adding-some-meta-buttons-always-visible/\">Adding some meta buttons always visible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/new-wordpress-org-theme-for-your-rosetta-site/\">New WordPress.org Theme for your Rosetta Site</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/test-team-update-7-august-2023/\">Test Team Update: 7 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/07/themes-team-meeting-agenda-for-august-08-2023/\">Themes team meeting agenda for August 08, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/themes-team-update-august-08-2023/\">Themes team update August 08, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person &amp; Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-wordpress-6-3/\">Exploring WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-spacer-block/\">How to use the spacer block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-6\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-5\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-day-online-session-2\">Training Team Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 20:02:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Akismet: How to Disable Comments in WordPress (and When Not to)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=160334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://akismet.com/blog/how-to-disable-comments-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20675:\"<p>The heart of an online presence lies in its engaging community, and what better way to foster such engagement than allowing users to post comments? Yet, there are moments when it might be necessary to hit the &#8220;off&#8221; switch. If your comments section gets flooded with spam, your impulse may be to automatically close comments before things get too messy.&nbsp;</p>\n\n\n\n<p>But you don&#8217;t necessarily need to do that. Today, we&#8217;ll delve into how to disable comments in WordPress and also discuss situations where this isn&#8217;t the best decision. And we&#8217;ll explore solutions to common concerns, such as managing spam, using powerful tools like Akismet.</p>\n\n\n\n<p>Let&#8217;s get right to it.</p>\n\n\n\n<span id=\"more-160334\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Turning off comments to stop spam? Install Akismet instead</h2>\n\n\n\n<p>Before you disable comments altogether, consider what’s really bothering you.</p>\n\n\n\n<p>Is it the <a href=\"https://akismet.com/blog/how-to-stop-comment-spam-in-wordpress/\">flood of spam</a> making your management duties unbearable? Or, are trolls wreaking havoc on your site&#8217;s overall positive vibes? It&#8217;s natural to feel overwhelmed and think of disabling comments as the quick fix. But there’s a better method you can employ.</p>\n\n\n\n<p>Enter <a href=\"https://akismet.com/\">Akismet</a>, your staunch ally in the battle against spam. This robust tool packs quite a punch when it comes to filtering out spammy content, letting you revel in the genuine, quality interaction with your users.</p>\n\n\n\n<img width=\"900\" height=\"526\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image2.jpg\" alt=\"Akismet homepage with the text, \" />\n\n\n\n<p>A blend of simplicity and power, Akismet is astoundingly easy to use. Once installed and set up, it works quietly behind the scenes of your entire WordPress site, sifting through incoming comments, and sweeping away spam. All you&#8217;re left with are the comments that truly matter. You&#8217;ll see the difference immediately and wonder how you ever managed without it.</p>\n\n\n\n<p>Here are a few features that make Akismet your hero:</p>\n\n\n\n<ul>\n<li><strong>Automatic spam detection</strong>: It checks and filters every comment, so you don&#8217;t have to spend your precious time discerning real comments from spam.</li>\n\n\n\n<li><strong>A flexible discard feature</strong>: You have complete control. You can choose to discard the worst and most pervasive spam, so you&#8217;ll never have to see it.</li>\n\n\n\n<li><strong>A visible comment status history</strong>: For each comment, Akismet provides a status history, so you can understand where the spam was caught, cleared, or missed.</li>\n</ul>\n\n\n\n<p>This is all fine and well, but maybe it seems like too much trouble. Couldn&#8217;t you just disable comments across the board and be done with it? Certainly, you could. But there are tangible <a href=\"https://akismet.com/blog/wordpress-pros-and-cons-of-enabling-comments/\">benefits to keeping comments turned on</a> in WordPress.&nbsp;</p>\n\n\n\n<p>For instance, comments can:</p>\n\n\n\n<ul>\n<li>Boost community engagement</li>\n\n\n\n<li>Encourage repeat visitors</li>\n\n\n\n<li>Provide a way to get quick feedback</li>\n\n\n\n<li>Improve on-page SEO</li>\n</ul>\n\n\n\n<p>But if left to run amuck, an overabundance of spam comments can leave a sour taste in visitors&#8217; mouths. An unmoderated comment section can:</p>\n\n\n\n<ul>\n<li>Look unprofessional</li>\n\n\n\n<li>Affect site security</li>\n\n\n\n<li>Attract more spam comments</li>\n\n\n\n<li>Create more work for admins</li>\n</ul>\n\n\n\n<p>All that being said, before you decide to disable comments in WordPress for future posts entirely, give Akismet a shot. It&#8217;s the solution that preserves your community engagement while keeping your WordPress website clean and spam free.</p>\n\n\n\n<p>Still, there might be situations where you want to learn how to turn off comments in WordPress. Perhaps you&#8217;ve decided to repurpose your blog as a purely informational site, or maybe you have a specific WordPress post that doesn’t require engagement. Whatever your reasons, we&#8217;ll walk you through the process next.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Still want to disable WordPress comments? Here are four ways to do so:</h2>\n\n\n\n<p>While we advocate for keeping the <a href=\"https://akismet.com/blog/wordpress-comment-system/\">comments section</a> activated, there are times when you may feel it necessary to hit that &#8220;disable&#8221; button. If you&#8217;ve made up your mind, here are four ways to turn off comments in WordPress:</p>\n\n\n\n<img width=\"1999\" height=\"1333\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image11.jpg\" alt=\"man in a maroon sweater looking at a computer screen\" class=\"wp-image-160337\" />\n\n\n\n<h3 class=\"wp-block-heading\">1. Turn off comments in your WordPress settings</h3>\n\n\n\n<p>One way to disable comments site-wide is through the WordPress Discussion settings.</p>\n\n\n\n<p>Here&#8217;s how you do it:</p>\n\n\n\n<ol>\n<li><a href=\"https://jetpack.com/blog/wordpress-admin-dashboard/\">From your WordPress Dashboard</a>, navigate to <strong>Settings → Discussion</strong>.</li>\n\n\n\n<li>In the <strong>Default post settings</strong> section, uncheck the box that says <strong>Allow people to comment on new posts</strong>.</li>\n\n\n\n<li>Scroll down and click <strong>Save Changes</strong>.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"190\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image9.jpg\" alt=\"discussion settings in WordPress\" class=\"wp-image-160338\" />\n\n\n\n<p>Remember, this setting only applies to future posts. Your old posts will still have comments enabled unless you disable them individually or in bulk, which brings us to our next point.</p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Disable comments on a specific post</h3>\n\n\n\n<p>Maybe you just want to turn off comments for one or a few specific posts. That&#8217;s easy to accomplish as well:</p>\n\n\n\n<ol>\n<li>From the WordPress dashboard, navigate to <strong>Posts</strong> or <strong>Pages</strong> and find the post or page where you want to disable comments.</li>\n\n\n\n<li>Click <strong>Edit</strong> to open the post or page.</li>\n\n\n\n<li>On the right-hand side of the screen, in the <strong>Post</strong> tab, scroll down to <strong>Discussion</strong>.</li>\n\n\n\n<li>Uncheck <strong>Allow comments</strong>.</li>\n\n\n\n<li><strong>Update</strong> or<strong> Publish</strong> the post to save your changes.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"290\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image6.jpg\" alt=\"comment settings on an individual blog post\" class=\"wp-image-160339\" />\n\n\n\n<p>Or, you can do this from the Post or Pages list. Instead of clicking on the post to open the Block Editor, click <strong>Quick Edit</strong>, uncheck the box that says <strong>Allow Comments.</strong> then click <strong>Save</strong>.</p>\n\n\n\n<img width=\"900\" height=\"379\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image8.jpg\" alt=\"turning off comments for a post\" class=\"wp-image-160340\" />\n\n\n\n<h3 class=\"wp-block-heading\">3. Disable comments in bulk on a group of posts</h3>\n\n\n\n<p>If you need to disable comments on multiple posts, you can do so quickly with the bulk edit feature:</p>\n\n\n\n<ol>\n<li>Go to <strong>Posts</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Check the boxes next to the posts where you want to disable WordPress comments.</li>\n\n\n\n<li>From the <strong>Bulk Actions</strong> drop-down at the top, choose <strong>Edit,</strong> then click <strong>Apply</strong>.</li>\n\n\n\n<li>In the <strong>Bulk Edit</strong> box that appears, find <strong>Comments</strong> and select<strong> Do not allow</strong>.</li>\n\n\n\n<li>Click on the <strong>Update</strong> button to save your changes.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"426\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image7.jpg\" alt=\"turning off comments on posts in bulk\" class=\"wp-image-160342\" />\n\n\n\n<h3 class=\"wp-block-heading\">4. Turn off comments using custom code</h3>\n\n\n\n<p>If you feel comfortable tinkering with your site&#8217;s code, you can turn off comments by adding a few lines to your theme&#8217;s <em>single.php</em> file. This is the file that controls specifications for your site&#8217;s blog posts.</p>\n\n\n\n<p><em>Note: Before making any changes to your site&#8217;s code, always make a backup. Accidents can happen, and you don&#8217;t want to lose your site&#8217;s data. </em><a href=\"https://jetpack.com/upgrade/backup/\"><em>Jetpack VaultPress Backup</em></a><em> is the ideal solution for this purpose. Finally, it’s important to use a child theme in a staging environment before pushing your changes to your live site.</em></p>\n\n\n\n<p>Once you&#8217;re ready, locate your <em>single.php</em> file and open it in an HTML editor. Find the follow line of code in the file:</p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>&lt;?php comments_template(); ?&gt;</em></code></pre>\n\n\n\n<p>Highlight this bit of code and replace it with the following:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!-- Begin Comment\n\n&lt;?php comments_template(); ?&gt;\n\nEnd Comment --&gt;</code></pre>\n\n\n\n<p>This code will turn off comments for all the posts on your WordPress site (and will even remove existing comments). By using this method, you’re &#8220;commenting out&#8221; the line of code that enables comments on your WordPress site. This turns that line of code into a “note” (such as ones you might make for other developers to reference if they’re troubleshooting your work) instead of a line that would actually be executed. </p>\n\n\n\n<p>Disabling comments in this way is a better solution than simply removing the line of code entirely because you can more easily re-enable comments again in the future.&nbsp;</p>\n\n\n\n<p>You can repeat this process for additional post types, including your site&#8217;s pages.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Alternative solution: Keep comments enabled, but block spam</h3>\n\n\n\n<img width=\"1024\" height=\"930\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image5.png\" alt=\"\" class=\"wp-image-160343\" />\n\n\n\n<p>If you feel hesitant about taking the last-ditch approach to disable comments in WordPress altogether, there <em>is </em>a better solution. Consider keeping comments enabled but blocking spam. It&#8217;s the middle-ground solution that lets you foster community engagement while keeping spam at bay.</p>\n\n\n\n<p>Akismet is your go-to tool for this purpose. Once enabled, it screens every comment and filters out those that look like spam. You&#8217;re left with genuine interaction without the headache of moderating every single comment manually.</p>\n\n\n\n<p>To get started with Akismet, you&#8217;ll first need to install and activate the Akismet plugin. Here&#8217;s a step-by-step guide to get you up and running:</p>\n\n\n\n<ol>\n<li>From your WordPress dashboard, navigate to <strong>Plugins</strong> and then click on <strong>Add New</strong>.</li>\n\n\n\n<li>In the search box, type “Akismet”. It should be the first result that appears.</li>\n\n\n\n<li>Click on the <strong>Install Now</strong> button and then <strong>Activate</strong>.</li>\n</ol>\n\n\n\n<p>Now that the Akismet plugin is activated, you&#8217;ll need to set it up:</p>\n\n\n\n<ol>\n<li>Go to <strong>Settings → Akismet Anti-Spam</strong>.</li>\n\n\n\n<li>You&#8217;ll be asked for your <strong>Akismet API key</strong>. If you don&#8217;t have one, go to the Akismet website, where you can sign up for an account and create a key.</li>\n\n\n\n<li>Once you&#8217;ve got your key, enter it in the API Key field, then click <strong>Save Changes</strong>.</li>\n\n\n\n<li>Akismet is now connected to your WordPress site.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"510\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image12.jpg\" alt=\"settings for Akismet\" class=\"wp-image-160344\" />\n\n\n\n<p>That&#8217;s it! Akismet is now set up and ready to start blocking spam.</p>\n\n\n\n<p>You can view stats and see how many spam comments Akismet has blocked by visiting the <strong>Akismet Stats</strong> page in your WordPress dashboard.</p>\n\n\n\n<p>Remember, enabling comments doesn&#8217;t have to mean opening the floodgates to spam. With Akismet on guard, you can enjoy the best of both worlds: an engaged community and a spam-free commenting experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to delete past comments in bulk</h2>\n\n\n\n<p>Whether you&#8217;ve decided to disable comments or simply need to clear out old, irrelevant chatter on existing published posts, WordPress provides easy ways to delete all the comments from the past.</p>\n\n\n\n<img width=\"1999\" height=\"1333\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image1.jpg\" alt=\"crumpled up paper by a trash can\" class=\"wp-image-160345\" />\n\n\n\n<p>Let&#8217;s start with handling this task in bulk:</p>\n\n\n\n<ol>\n<li><a href=\"https://jetpack.com/blog/how-to-back-up-your-wordpress-site/\">Create a backup of your WordPress site</a> before making any major changes.</li>\n\n\n\n<li>Navigate to the<strong> Comments </strong>section in your WordPress dashboard.</li>\n\n\n\n<li>By default, all comments are displayed. You can filter them by clicking on the All, Pending, Approved, Spam, or Trash links at the top.</li>\n\n\n\n<li>Once you&#8217;ve chosen the comments you wish to delete, check the box next to Author at the top to select all comments on the page. Alternatively, you can manually select individual comments.</li>\n\n\n\n<li>From the <strong>Bulk Actions </strong>dropdown menu, choose <strong>Move to Trash</strong> and then click <strong>Apply</strong>.</li>\n</ol>\n\n\n\n<p>This will send all selected comments to the trash. If you want to permanently delete these comments:</p>\n\n\n\n<ol>\n<li>Click on the <strong>Trash</strong> link at the top.</li>\n\n\n\n<li>Click the<strong> Empty Trash </strong>button.</li>\n</ol>\n\n\n\n<p>And that’s it. Your selected comments are gone for good.</p>\n\n\n\n<p>The only problem here is that, by default, you can only bulk delete 20 comments at a time. To get around this, click <strong>Screen Options</strong> at the top of the Comments page. Beside “Number of items per page,” change “20” to whatever you’d like and click <strong>Apply.</strong></p>\n\n\n\n<img width=\"958\" height=\"508\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image4.png\" alt=\"selecting the number of posts per page\" class=\"wp-image-160346\" />\n\n\n\n<h2 class=\"wp-block-heading\">How to delete past comments on individual posts</h2>\n\n\n\n<p>If you&#8217;re only interested in pruning comments from specific existing posts, WordPress offers an efficient way to do so. Here&#8217;s how:</p>\n\n\n\n<ol>\n<li>Navigate to <strong>Posts</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Find the post from which you want to remove comments and, in the Comments column, click the number of published comments for that post.</li>\n\n\n\n<li>You&#8217;ll now see a list of all comments for that post. Hover over the comment you want to delete to reveal a menu and click <strong>Trash</strong>.</li>\n\n\n\n<li>If you want to permanently delete this comment, click on the <strong>Trash</strong> link at the top to view all trashed comments. Hover over the comment you just trashed, and click <strong>Delete Permanently</strong>.</li>\n</ol>\n\n\n\n<p>That&#8217;s it! You&#8217;ve successfully learned how to manage and control the comments section on your WordPress site. While it might be tempting to disable comments during tough times, tools like Akismet can make the task a lot easier, ensuring your site remains a place for valuable discussion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions</h2>\n\n\n\n<p>Having shed light on how to disable comments in WordPress, let&#8217;s now address some frequently asked questions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Why use Akismet instead of disabling comments?</h3>\n\n\n\n<p>Akismet is a powerful spam filtering service that can significantly reduce the time and effort you spend moderating comments. By using Akismet, you can maintain an open forum for your users to engage and interact without the headache of dealing with comment spam.&nbsp;</p>\n\n\n\n<p>This helps foster a sense of community around your content and can also improve your site&#8217;s SEO by encouraging user-generated content. In contrast, disabling comments shuts down these possibilities.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What are other advantages of enabling comments?</h3>\n\n\n\n<p>Enabling comments on your site creates a two-way communication channel between you and your visitors. This can lead to insightful discussions, provide feedback, and generate new ideas for content. Comments also increase the time people spend on your site, which can boost your SEO.</p>\n\n\n\n<img width=\"1999\" height=\"1125\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image10.jpg\" alt=\"black coffee mug next to a laptop\" class=\"wp-image-160347\" />\n\n\n\n<h3 class=\"wp-block-heading\">What should I do if comments are disabled but still showing?</h3>\n\n\n\n<p>If you chose to disable comments in WordPress, but comments are still appearing on your site, it might be that they were posted before you disabled comments. In such a case, you&#8217;ll need to manually delete these comments. You can refer to our sections on how to delete comments in bulk or on individual posts for step-by-step instructions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I disable comments on media files?</h3>\n\n\n\n<p>WordPress treats media files (images, videos, etc.) as separate posts, which means they can have their own comment sections. To disable comments on media files, you&#8217;ll need to do the following:</p>\n\n\n\n<ol>\n<li>Go to <strong>Media → Library</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Click on the media file you want to disable comments for.</li>\n\n\n\n<li>On the right hand side of the screen click <strong>Edit more details</strong>.</li>\n\n\n\n<li>Under the <strong>Discussion</strong> section, uncheck the box that says <strong>Allow comments</strong>. If you don’t see this option, click <strong>Screen Options </strong>at the top and check the box next to <strong>Comments</strong>.&nbsp;</li>\n\n\n\n<li>Click <strong>Update</strong> to save changes.</li>\n</ol>\n\n\n\n<p>Repeat this process for each media file you want to disable comments for.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I remove the “Comments Are Closed” message?</h3>\n\n\n\n<p>The &#8220;Comments Are Closed&#8221; message typically appears when comments have been disabled on a post that had comments previously published. One way to remove this is by adding this CSS to your site.</p>\n\n\n\n<p>In your dashboard, go to <strong>Appearance → Additional CSS.</strong> Add this line of code to the bottom:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>.nocomments {\n\n&nbsp;&nbsp;&nbsp;&nbsp;display: none;\n\n}</code></pre>\n\n\n\n<p>Then, click <strong>Publish.</strong>&nbsp;</p>\n\n\n\n<p>This should work for the majority of themes. If, however, your theme uses a different CSS class for the “Comments Are Closed” message, you’ll need to replace “.nocomments” with the correct line.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I remove the comment counter on my blog?</h3>\n\n\n\n<p>The comment counter is a feature that comes with many WordPress themes. To remove it, you&#8217;ll need to edit your theme&#8217;s files. Again, back up your site before making any changes.</p>\n\n\n\n<ol>\n<li>Go to <strong>Appearance → Additional CSS</strong>.</li>\n\n\n\n<li>Next, you need to hide the<em> .comments_count class</em>. To do this, paste this code snippet at the bottom:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.comments-count {\n\n&nbsp;display: none;\n\n}</code></pre>\n\n\n\n<ol start=\"3\">\n<li>Click <strong>Publish</strong> to save your changes.</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">Akismet: AI-powered anti-spam for WordPress comments and forms</h2>\n\n\n\n<p>Comments form a vibrant part of any blog or website, sparking discussions, fostering community, and generating valuable user engagement. However, managing spam can turn this asset into a hassle. That&#8217;s why Akismet is such a valuable plugin — it can transform the chore of comment moderation into an automated process.</p>\n\n\n\n<p>Harnessing the power of AI, Akismet helps keep your comments section clean, filtering out spam and allowing genuine interactions to shine. While disabling comments might seem like a tempting quick fix, consider this alternative: a world where your users can freely submit comments to share their thoughts, ideas, and appreciation without you having to worry about an onslaught of spam.</p>\n\n\n\n<p><a href=\"https://akismet.com/pricing/\">Get started with Akismet</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kathryn Marr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: WordPress 6.3 “Lionel” Introduces Command Palette, Expands Pattern Management and Design Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147591\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/wordpress-6-3-lionel-introduces-command-palette-expands-pattern-management-and-design-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8466:\"<img width=\"1508\" height=\"1124\" />image credit: <a href=\"https://garystockbridge617.getarchive.net/amp/media/lionel-hamptonnovember-1956-a54db8\">Lionel Hampton.November 1956. Örebro, Sverive</a>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3</a> “Lionel” was released today, named for <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, an American jazz vibraphonist, pianist, percussionist, and bandleader.</p>\n\n\n\n<p>As the last release in Phase 2 of the Gutenberg project, many updates in WordPress 6.3  are targeted at polishing up customization features and the UI that supports them. </p>\n\n\n\n<p>Content, templates, and patterns can now be <a href=\"https://github.com/WordPress/gutenberg/issues/44461\">edited together</a>, without the user having to leave the Site Editor. This streamlines the workflow across templates and content, making it easier to build out a website with live previews. Users can now <a href=\"https://github.com/WordPress/gutenberg/pull/50565\">create new pages</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/50565\">view page details in the sidebar</a>, an experience that is very similar to editing a page in the block editor except that it keeps the process inside the flow of design editing.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit:&nbsp;<a href=\"https://make.wordpress.org/core/2023/06/14/whats-new-in-gutenberg-16-0-14-june/\">Gutenberg 16.0 release post</a>\n\n\n\n<h3 class=\"wp-block-heading\">Pattern Management Expands to Include Creating and Syncing Patterns</h3>\n\n\n\n<p>Pattern management was a major focus of the 6.3 release. Users can now arrange blocks to create their own patterns and save them to a library where they can be searched and edited. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1600\" height=\"922\" />Changes to Patterns –&nbsp;<a href=\"https://make.wordpress.org/core/2023/07/14/whats-new-in-gutenberg-16-2-12-july/\">Gutenberg 16.2 release post</a>\n\n\n\n<p>Reusable blocks have been <a href=\"https://wptavern.com/reusable-blocks-renamed-to-patterns-with-synced-and-non-synced-options\">renamed to synced patterns</a> but still function the same way. They can be created and edited in the block editor and then inserted into posts or pages with the edits synced. Block patterns, once inserted, can be edited and are not synced across other instances. </p>\n\n\n\n<p>The difference between synced and non-synced patterns is shown in the&nbsp;<a href=\"https://github.com/WordPress/gutenberg/pull/51954\">sync status details section</a>&nbsp;within the pattern sidebar navigation screen. <a href=\"https://github.com/WordPress/gutenberg/pull/51990\">A new lock icon</a>&nbsp;designates theme patterns as unable to be edited or modified.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"874\" height=\"577\" />image credit:&nbsp;<a href=\"https://github.com/WordPress/gutenberg/pull/51990\">Gutenberg PR #51990</a>\n\n\n\n<h3 class=\"wp-block-heading\">New Command Palette Tool Enables Quick Search and Command Execution</h3>\n\n\n\n<p>WordPress 6.3 <a href=\"https://wptavern.com/wordpress-6-3-will-introduce-a-command-palette\">introduces a new Command Palette</a> that was designed to be an extensible quick search and command execution tool. Users can do things like navigate to a page or post, add new content or a template, and toggle UI elements and editor preferences, among other things. It can be activated by using keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows) or by clicking the sidebar search icon in Site View, or clicking the Title Bar.</p>\n\n\n\n<p>Contributors are considering <a href=\"https://github.com/WordPress/gutenberg/issues/53299\">adding support for WP-CLI commands</a> in future iterations. The Command Palette is <a href=\"https://github.com/WordPress/gutenberg/pull/51169\">launching with a public API</a> so developers can explore extending it to add their own commands.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"500\" height=\"500\" />image source: WordPress 6.3 About Page\n\n\n\n<h3 class=\"wp-block-heading\">WordPress&#8217; Design Tools Updated to Include More Customization Capabilities</h3>\n\n\n\n<p>This release significantly expands the capabilities of existing design tools to make it easier to customize the finer details. Users can now design their own caption styles through the Styles interface without writing any CSS. Duotone filters are now available to be managed in Styles for blocks that support them and there is an option to disable them entirely. The Cover block&#8217;s settings capabilities have been expanded to include text color, layout controls, and border options.</p>\n\n\n\n<p>A few other notable new features and improvements in WordPress 6.3 include the following: </p>\n\n\n\n<ul>\n<li>Style revisions in the Site Editor let users revert to previous versions of the design</li>\n\n\n\n<li>New Footnotes block automatically links annotations throughout the content</li>\n\n\n\n<li>New Details block allows users to easily show or hide content </li>\n\n\n\n<li>Preview block themes before activating</li>\n\n\n\n<li>Set aspect ratio on images</li>\n\n\n\n<li>Distraction-free mode now available in the Site Editor</li>\n\n\n\n<li>Revamped top toolbar</li>\n\n\n\n<li>Improvements to List View&#8217;s drag-and-drop functionality</li>\n\n\n\n<li>New modal for building templates with patterns</li>\n\n\n\n<li>Failed update safeguards</li>\n\n\n\n<li>Minimum supported version of PHP updated to 7.0.0</li>\n\n\n\n<li>50+ accessibility improvements for labeling, tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor </li>\n</ul>\n\n\n\n<p>This release also brings more than 170 performance improvements and is significantly faster than previous versions.</p>\n\n\n\n<p>&#8220;Based on the <a href=\"https://docs.google.com/spreadsheets/d/1UMBN8H9r5ad5NPb81N3cx1bfAvhVDnd2UKpVU1FVgjc/edit\">performance benchmarks conducted</a> for RC3, <strong>WordPress 6.3 loads 24% faster for block themes and 18% faster for classic themes</strong>, compared to WordPress 6.2, based on the <a href=\"https://web.dev/lcp/\">Largest Contentful Paint (LCP)</a> metric,&#8221; Google-sponsored contributor Felix Arntz said in a <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">summary</a> on the improvements. &#8220;For WordPress 6.2, those improvements amounted to 18% and 5% respectively, so it is fair to summarize that WordPress 6.3 is a major achievement in terms of performance. &#8220;</p>\n\n\n\n<p>The most notable performance gains came from the introduction of defer and async support for the Scripts API and fetchpriority support for images, along with optimization of the <code>emoji-loader.js</code> script.</p>\n\n\n\n<p>WordPress 6.3 is the result of the efforts of more than 650 contributors across 52 countries, with ~32% of them (205) being first-time contributors. </p>\n\n\n\n<p>After updating to WordPress 6.3, users may notice a new &#8220;Get Involved&#8221; tab on the About page, designed to help new contributors find their place in the WordPress project. This addition closes a 10-year old <a href=\"https://core.trac.wordpress.org/ticket/23348\">ticket</a> that suggested adding a “Contribute” tab to the About page. It features both code-based and no-code contribution opportunities with a link to a new <a href=\"https://make.wordpress.org/contribute/\">WordPress.org/contributor</a> page.  This page debuts a new interactive tool that helps visitors find contributor teams that might be a good fit for their interests and capabilities.</p>\n\n\n\n<p>&#8220;As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience,&#8221; WordPress 6.3 release lead Matías Ventura said.</p>\n\n\n\n<p>For more details on all the changes included under the hood in this release, check out the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">documentation for 6.3</a>, the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a>, and <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-3/\">6.3-related developer notes</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 21:29:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress.org blog: WordPress 6.3 “Lionel”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:64206:\"<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-15794\" />\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&ssl=1\" alt=\"Image titled: \" /><em>Do everything in the Site Editor</em>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting \" /><em>Preview a new block theme before you switch and commit</em>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" /><em>My patterns: All your patterns in one place</em>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" /><em>Get to know the new Command Palette </em>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" /><em>New design tools</em>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&ssl=1\" alt=\"Image titled \" /><em>Style revisions: See your style revision history </em>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" /><em>Add footnotes effortlessly with the new Footnotes Block</em>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" /><em>Display or hide content with the new Details Block</em>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/benlk/\">benlk</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke Kaminski</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/wtranch/\">Delete My Account</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan (a11n)</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">hbhalodia</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">hrdelwar</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">jomonthomaslobo1</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">nadimcse</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">skorasaurus</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br />Ships tools for building great sites<br />Collaboration</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: A Look at Weglot, the Product and the Company, with Thomas Fanchin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75815\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://dothewoo.io/a-look-at-weglot-the-product-and-the-company-with-thomas-fanchin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:455:\"<p>Thomas Fanchin, Weglot\'s partnership manager, discusses their involvement in WordPress, partnerships, and community engagement.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-look-at-weglot-the-product-and-the-company-with-thomas-fanchin/\">A Look at Weglot, the Product and the Company, with Thomas Fanchin</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"WPTavern: ConvertKit Updates WordPress Plugin, Adds Members Only Content, Newsletter Feed, and Product Embeds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147547\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wptavern.com/covertkit-updates-wordpress-plugin-adds-members-only-content-newsletter-feed-and-product-embeds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2808:\"<p><a href=\"https://convertkit.com/\">ConvertKit</a> has updated its <a href=\"https://wordpress.org/plugins/convertkit/\">official WordPress plugin</a> and <a href=\"https://wordpress.org/plugins/convertkit-for-woocommerce/#description\">WooCommerce add-on</a> to support a range of new features. More than 40,000 sites use ConvertKit&#8217;s plugin to integrate their newsletters, email campaigns, and digital products with WordPress. The service is <a href=\"https://convertkit.com/pricing\">free for the user&#8217;s first 1,000 subscribers</a> but offers more automated features and third party integration on its paid tiers.</p>\n\n\n\n<p>The latest version of the ConvertKit plugin for WordPress brings the &#8220;Members Content&#8221; feature out of beta. It allows site owners to set up gated content for things like courses, e-books, or curated content without having to switch platforms, keeping members on the WordPress site.</p>\n\n\n\n<p>In the WordPress admin, under the ConvertKit >> Member Content settings, admins can now specify a <a rel=\"noreferrer noopener\" href=\"https://help.convertkit.com/en/articles/4199330-convertkit-commerce-creating-a-product\" target=\"_blank\">ConvertKit Commerce product</a> to be required in order to view a post, page, or WooCommerce product page.</p>\n\n\n\n<img width=\"895\" height=\"700\" />WordPress content gated by ConvertKit subscription &#8211; image source: <a href=\"https://help.convertkit.com/en/articles/7896769-how-to-customize-your-convertkit-subscribers-experience-on-your-wordpress-website\">ConvertKit documentation</a>\n\n\n\n<p>This update also adds a &#8220;Newsletter feed&#8221; that ConvertKit users can embed on their WordPress sites to display a paginated list of their public broadcast emails. It can be shown as a grid with images and descriptions or a list with subject and date.</p>\n\n\n\n<p>Recent updates to the plugin also introduce product embeds, allowing site owners to create a storefront of their ConvertKit products on their WordPress sites. The styles for the embedded products can be edited inside the Site Editor.</p>\n\n\n\n<p>Other notable improvements in this round of updates include the following: </p>\n\n\n\n<ul>\n<li>The WooCommerce add-on for ConvertKit has been updated to map customer first and last names to ConvertKit custom fields</li>\n\n\n\n<li>New &#8220;Form Trigger Block&#8221; creates a button that triggers a pop-up modal </li>\n\n\n\n<li>PHP SDK now available for building on top of the ConvertKit API</li>\n</ul>\n\n\n\n<p>More detailed information on the settings for the new features is available in the ConvertKit documentation on <a href=\"https://help.convertkit.com/en/articles/7896769-how-to-customize-your-convertkit-subscribers-experience-on-your-wordpress-website\">customizing subscribers&#8217; experience on WordPress websites</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 02:58:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: The First Learn WordPress Course Cohort Will Teach Participants How to Develop Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147549\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/the-first-learn-wordpress-course-cohort-will-teach-participants-how-to-develop-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2101:\"<p>WordPress&#8217; Training Team is <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">launching</a> its first Learn WordPress Course Cohort, which is a social learning method where a group of people go through the learning process together with some synchronous group activities. One of the benefits of cohorts is the sense of community and connection that can develop between the participants, fostering more support and collaboration.</p>\n\n\n\n<p>The first course cohort topic is &#8220;Developing your first WordPress Block,&#8221; aimed at first-time block developers who have never built a block before. It lasts six weeks and covers the following topics: </p>\n\n\n\n<ul>\n<li>Week 1: Introduction, preparing your environment for block development.</li>\n\n\n\n<li>Week 2: Using create-block to scaffold your first block, Internationalisation.&nbsp;</li>\n\n\n\n<li>Week 3: Block styling, block supports, block controls</li>\n\n\n\n<li>Week 4: Block attributes, block components&nbsp;</li>\n\n\n\n<li>Week 5: Interacting with WordPress data</li>\n\n\n\n<li>Week 6: Dynamic blocks</li>\n</ul>\n\n\n\n<p>The cohort is limited to 14 participants who will be selected at random if they meet the requirements. These include a WordPress.org profile, a Make Slack account, and availability every Wednesday at 8:00 UTC for the duration of the course.</p>\n\n\n\n<p>A course on beginning block development is likely to be very popular, so the Training team has committed to maintaining a waiting list for any applications that are not selected in the first round. This is a remarkable opportunity for any developer who has not yet experimented with building blocks but thrives in a more social learning environment.  Future cohort courses on the same topic will be scheduled after this one is complete.</p>\n\n\n\n<p>The deadline to <a href=\"https://learnwordpress.survey.fm/developing-your-first-wordpress-block-course-cohort-sign-up\">apply to the very first Learn WordPress course cohort</a> is August 20, 2023, and the course will run from  September 4th to October 9th, 2023.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Aug 2023 20:02:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: Big Changes coming, Hallway Hangout, new course cohort and building custom design tools—Weekend Edition 264\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25117\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"https://gutenbergtimes.com/big-changes-coming-hallway-hangout-new-course-cohort-and-building-custom-design-tools-weekend-edition-264/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17242:\"<p>Howdy, </p>\n\n\n\n<p>I&#8217;ll be on vacation for the next two weeks and during that time, I will stay away from the computer or phone as much as possible. Really disconnect from the net. I&#8217;ll let you know how that went when I&#8217;ll get back ? </p>\n\n\n\n<p>While I am gone, WordPress 6.3 will come out next week, and I hope my efforts to  share all that information prepared you, your clients, and teammates well for the next major release.</p>\n\n\n\n<p>In case you missed it, the comments on this post by Josepha Haden Chomphosy  <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a> will be open until August 15, 2023. &#8220;<em>Adding your&nbsp;ticket&nbsp;here won’t necessarily guarantee inclusion. But no one can fix things they can’t see, so bravely share your thoughts!</em>&#8221; </p>\n\n\n\n<p>So I am almost out the door! Be well! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n<p>PS: I might share some photos on <a href=\"https://www.instagram.com/idx/\">Instagram @idx </a></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-upcoming-word-press-events\">Upcoming WordPress Events</a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Doc Pop</strong> interviewed <strong>Justin Tadlock</strong> on the podcast <em>Press This:</em><strong> <a href=\"https://torquemag.io/2023/08/press-this-wordpress-6-3/\">Big Changes Coming to WordPress 6.3</a></strong>. They discussed the upcoming WordPress 6.3 release, which marks the end of Phase Two of Gutenberg development. </p>\n\n\n\n<p>As some of you already know, the features in WordPress 6.3 include a revamped site editor interface with better navigation and stylebook support, making it easier for non-coders to customize their sites visually. </p>\n\n\n\n<p>A new Command Palette is introduced, enabling users to quickly access various functions in Gutenberg. There are also performance improvements, such as fetch priority support for images and updates to the cache and file system API.</p>\n\n\n\n<a href=\"https://wordpress.org/news/category/releases/\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide\" />\n\n\n\n<p><strong>Joen Assmussen</strong> collected all the great work of the WordPress design team in his latest <a href=\"https://make.wordpress.org/design/2023/07/31/design-share-jul-3-jul-28/\">Design Share: Jul 3-Jul 28</a>, among those</p>\n\n\n\n<ul>\n<li>Search views and a Meta search for Openverse</li>\n\n\n\n<li>Refined revamp of the showcase pages with additional filter component on WordPress.org </li>\n\n\n\n<li>Assemble a WordPress Design Library for various teams to use</li>\n\n\n\n<li>Details page for Template parts</li>\n\n\n\n<li>Improved Confirm dialog modals, and</li>\n\n\n\n<li>Lots of design work for the new pattern screens in the Site Editor</li>\n</ul>\n\n\n\n<a href=\"https://make.wordpress.org/design/2023/07/31/design-share-jul-3-jul-28/\"><img /></a>Screenshot of Showcase redesign\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\">Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.</a> with Anne McCarthy as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><br />In his latest video, <strong>Dustin Hartzler</strong> wants you to <a href=\"https://www.youtube.com/watch?v=p9Tz-QErKXQ\"><strong>Master Text Formatting in WordPress Block Editor</strong></a>. </p>\n\n\n\n<ul>\n<li>? Learn the basics of bold, italics, and underlining to add emphasis to your content. </li>\n\n\n\n<li>? Discover the power of heading levels to structure and organize your articles effectively. </li>\n\n\n\n<li>? Personalize your text with different font styles and sizes that match your unique brand. </li>\n\n\n\n<li>? Paint with words by changing text colors and adding a splash of creativity to your content. </li>\n\n\n\n<li>? Highlight key points and quotes to make them shine and stand out. </li>\n\n\n\n<li>? Master text alignment to achieve visually appealing and well-balanced content layouts.</li>\n</ul>\n\n\n\n<p>Hartzler is a long-time podcaster in the WordPress space, who just published his <a href=\"https://yourwebsiteengineer.com/532-why-its-a-good-idea-to-switch-to-the-block-editor/\">525th episode of the Your Website Engineer podcast</a>. Congratulations! </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-30_70 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/08/Demo-screenshot-Live-Q-A-Design-Systems.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\" target=\"_self\" rel=\"\"><span>Live Q &#038; A: Design Systems and theme.json</span></a></div><div class=\"ngl-article-excerpt\">One of the key challenges of running a site or series of sites at scale is ensuring design consistency and compliance with a design system. During this show, David Bowman,&hellip; <a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\" class=\"ngl-article-read-more\" target=\"_self\">Read more.</a></div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n<p>You must have been waiting for the part 3 of the Beyond Block Styles to come out! Don&#8217;t wait not more! <strong>Justin Tadlock</strong> pushed it over the finish line! <a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\"><strong>Beyond block styles, part 3: building custom design tools</strong></a>. You learn how to add a button and a set of icons to the block toolbar for the Separator block. It&#8217;s a great tutorial for advanced theme developers. </p>\n\n\n\n<p>You would need to to read the other two parts before it, though: </p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Part 2: building a custom style for the Separator block</a></li>\n</ul>\n\n\n\n<p>It&#8217;s a great project to study from beginning to end. I learned so much about the inner workings of the block editor. </p>\n\n\n\n<img />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>Early Gutenberg adopter and freelance developer, <strong>Igor Benic</strong> shared in his post <a href=\"https://www.ibenic.com/read-wordpress-block-content-programmatically/\"><strong>How to Read WordPress Block Content Programmatically</strong></a> and read blocks from content in WordPress. You&#8217;ll learn how to tap into the functions of the <code>core/block-editor</code> packages. ICYMI, Benic also published <a href=\"https://www.ibenic.com/how-to-programmatically-add-a-block-in-the-wordpress-block-editor/\">How to programmatically add a block in the WordPress Block Editor</a> earlier this year. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on how you should <a href=\"https://wptavern.com/start-testing-wordpress-new-interactivity-api\"><strong>Start Testing WordPress’ New Interactivity API</strong></a>. It&#8217;s still unsure of the Interactivity API will be ready for 6.4 release in November, the Interactivity API packages and features made their way to the Gutenberg plugin with version 16.2. &#8220;Developers can follow the API’s&nbsp;<a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/1-getting-started.md\">“Getting Started” guide</a>&nbsp;on GitHub to scaffold an interactive block with `@wordpress/create-block`. Take a look at the&nbsp;<a href=\"https://github.com/WordPress/gutenberg/discussions/52904\">roadmap</a>, which has an extensive list of tasks the team has in mind for the initiative and will include tracking issues for features as they progress.&#8221; Gooding wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-upcoming-word-press-events\">Upcoming WordPress Events</h2>\n\n\n\n<p>Join <strong>Nick Diego</strong> and <strong>Justin Tadlock</strong> for a Hallway Hangout on August 17, 2023, at 1:00 PM CST (18:00 UTC) on <strong><a href=\"https://make.wordpress.org/themes/2023/07/31/hallway-hangout-extending-blocks-with-custom-design-tools/\">Extending blocks with custom design tools</a>. </strong>They&#8217;ll have a casual conversation about creating custom design tools for blocks from a theming perspective. You&#8217;ll learn how to go beyond the Block Styles API and build your own custom controls, like an <a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\"><em>emoji-based icon picker for the Separator block</em></a>. Tadlock and Diego will also explore the possibilities of using block development to extend block themes and discuss current theme development limitations. </p>\n\n\n\n<p>Everyone is welcome, but if you&#8217;re interested in block theming or building block themes for clients, this session is especially for you. <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/295158615/\">RSVP for the event</a> through the Learn WordPress Meetup group to access the meeting link. Don&#8217;t miss it!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>WordCamp US</strong> organizers published <a href=\"https://us.wordcamp.org/2023/schedule/\">their schedule for the talks on August 25 and 26, 2023</a>. As with all Regional Flagship events, there will be a live stream. Here is a list of the block related topics. </p>\n\n\n\n<ul>\n<li><a href=\"https://us.wordcamp.org/2023/session/building-a-thoughtful-block-editing-experience/\">Building a thoughtful block editing experience</a> w/ Aurooba Ahmed (lightning) </li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/session/the-headless-block-editor/\">The Headless Block Editor</a> w/ Sean Bleakley </li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/session/the-independent-theme-developers-field-guide-to-modern-wordpress/\">The independent theme developer’s field guide to modern WordPress</a> w/ Michelle Schlup Hunt</li>\n</ul>\n\n\n\n<p>I love the emphasis on contributing, community and accessibility! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\"><strong>announced the first Learn WordPress course cohort</strong></a> on the training team&#8217;s blog: On September 4th, a 6-week cohort titled &#8220;Developing your first WordPress Block&#8221; starts. Bossenger will facilitate the course designed for first-time WordPress block developers. The structure includes weekly sessions covering block development topics such as block styling, attributes, and interacting with WordPress data. </p>\n\n\n\n<p>The cohort will meet in both asynchronous and synchronous sessions, with a one-hour real-time session every Wednesday at 8:00 UTC. If interested, read more about the application and selection processes in the <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">blog post</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nathan Wrigley</strong> and <strong><a href=\"https://twitter.com/anchenlr\">Anchen le Roux</a> </strong>scheduled this year&#8217;s <a href=\"https://pagebuildersummit.com/\"><strong>Page Builder Summit  for 18th &#8211; 22nd September 2023</strong></a>. They put together  is a great slate of new and veteran speakers. It&#8217;ll have plenty of Gutenberg topics, and it doesn&#8217;t hurt to learn about all the businesses and products in the WordPress space. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: &#8220;<a href=\"https://www.flickr.com/photos/54227024@N02/8261708942\" target=\"_blank\" rel=\"noreferrer noopener\">Mumbai Lab Architecture</a>&#8221; by&nbsp;<a href=\"https://www.flickr.com/photos/54227024@N02\" target=\"_blank\" rel=\"noreferrer noopener\">BMW Guggenheim Lab</a>&nbsp;is licensed under&nbsp;<a href=\"https://creativecommons.org/licenses/by-nd-nc/2.0/jp/?ref=openverse\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY-NC-ND 2.0</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Aug 2023 10:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Post Status: WordPress 6.3 RC3 • Cyber Resilience Act • Accessibility in Block Editing • Merging Gutenberg during Alpha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150074\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://poststatus.com/wordpress-6-3-rc3-cyber-resilience-act-accessibility-in-block-editing-merging-gutenberg-during-alpha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25593:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 30, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">What do WordPress, Drupal, Joomla, and TYPO3 have in common? Leaders across these Content Management Systems have <a href=\"https://youtu.be/tbnblHzHqBU\">come together</a> to express their concerns and seek dialogue with EU legislators regarding the proposed <a href=\"https://digital-strategy.ec.europa.eu/en/library/cyber-resilience-act\">Cyber Resilience Act</a>. They emphasize the vital role of Free and Open Source Software in fostering innovation, security, and economic prosperity. <br /><br />We&#8217;re just a few days away from August 8th&#8217;s WordPress 6.3 release. <br /><br />Two Gutenberg-related topics are worth consideration. First, Alex Stine shares how he sees WordPress using his screen reader. Secondly, consideration is underway to merge Gutenberg plugin releases into alpha releases.  </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fe_gitMerge kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Whose Ticket, Merging Gutenberg during Alpha, and EU CRA</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f195.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f39f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f510.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\">People of WordPress: Ihtisham Zahoor</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-10\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/wordpress-6-3-release-day-process/\">WordPress 6.3 Release Day Process</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-15\">\n<div class=\"wp-block-column is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-13\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/accessibility-team-meeting-agenda-august-4-2023/\">Accessibility Team Meeting Agenda: August 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/testing-matrix/\">Testing Matrix</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/a-week-in-core-july-31-2023/\">A Week in Core – July 31, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\">Beyond block styles, part 3: building custom design tools</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/understand-and-use-wordpress-nonces-properly/\">Understand and use WordPress nonces properly</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Beyond block styles, part 2: building a custom style for the Separator block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/dev-chat-agenda-august-1-2023/\">Dev Chat agenda, August 2, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/08/01/summary-for-docs-team-meeting-jul-18-2023/\">Summary for Docs Team meeting, Jul 18, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/08/02/hosting-team-meeting-agenda-2023-08-02/\">Hosting Team meeting agenda 2023-08-02</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/31/last-week-openverse-2023-07-24-2023-07-31/\">A week in Openverse: 2023-07-24 – 2023-07-31</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/performance-chat-summary-25-july-2023-2/\">Performance Chat Summary: 1 August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/core-performance-team-update-july-2023/\">Core Performance Team Update: July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/plugin-review-team-31-jul-2023/\">Plugin Review Team: 31 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/03/cross-locale-project-translation-editor-request-5/\">Cross-Locale Project Translation Editor Request</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/adding-error-checks-at-translate-wordpress-org/\">Adding error checks at translate.wordpress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/agenda-weekly-polyglots-chat-august-2-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 2, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/08/agenda-for-august-3rd-support-meeting-2/\">Agenda for August 3rd Support Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/summary-for-july-27th-support-meeting/\">Summary for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/test-team-update-31-july-2023/\">Test Team Update: 31 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/31/hallway-hangout-extending-blocks-with-custom-design-tools/\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/themes-team-update-august-01-2023/\">Themes team update August 01, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/training-team-meeting-recap-1st-august-2023/\">Training Team Meeting Recap – 1st August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/01/xpost-whats-new-on-learn-wordpress-in-july-2023/\">X-post: What’s new on Learn WordPress in July 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-tables-to-your-site/\">How to add tables to your site</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-internationalization\">Common WordPress APIs: Internationalization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-10\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Aug 2023 19:29:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: WordCamp Asia 2024 Opens Call for Speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147494\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/wordcamp-asia-2024-opens-call-for-speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2689:\"<p>WordCamp Asia 2024 is happening in Taipei, Taiwan, next year from March 7-9, at the <a rel=\"noreferrer noopener\" href=\"https://www.ticc.com.tw/wSite/mp?mp=2\" target=\"_blank\">Taipei International Convention Center (TICC)</a>. With the dates locked in and venue secured, organizers have now opened the <a href=\"https://asia.wordcamp.org/2024/call-for-speakers/\">call for speakers</a>. The event will feature three days of talks, workshops, and networking events, and organizers expect more than 2,000 attendees.</p>\n\n\n\n<p>Talks will be given in English and there will be four different formats for sessions:</p>\n\n\n\n<ul>\n<li>Long Talks: 40 minutes total (30 minutes for talk + 10 minutes for Q&amp;A)</li>\n\n\n\n<li>Lightning Talks: 10 minutes total (10 minutes for talk only. No Q&amp;A)</li>\n\n\n\n<li>Panel Discussions: Approximately 60 minutes with Q&amp;A</li>\n\n\n\n<li>Workshops: 90 minutes up to half a day</li>\n</ul>\n\n\n\n<p>WordCamp Asia&#8217;s organizers suggested nearly two dozen acceptable topics across a wide range of disciplines, including accessibility, SEO, marketing, Web3, AI, security, case studies, and more. They are especially &#8220;interested in hearing about diverse topics and inspirational stories. Topics such as trends, new approaches, and upcoming changes in related software and WordPress itself will be encouraged.&#8221;</p>\n\n\n\n<p>The call for speakers includes those who are hoping to host or join a panel discussion or host a workshop. Speakers do not have to be experienced at public speaking to be selected for WordCamp Asia. Those who do not have videos of previous talks can record a 5-10 minute video talking about their topic and link to it in the speaker form.</p>\n\n\n\n<p>WordCamp Asia has launched an <a href=\"https://asia.wordcamp.org/2024/underrepresented-speaker-support-initiative/\">Underrepresented Speaker Support Initiative</a> alongside this call for speakers with the goal of removing financial barriers for speakers. The program calls on companies to invest in creating a more diverse, equitable, and inclusive tech community by sponsoring underrepresented speakers, helping them practice their talks, and promoting the cause.</p>\n\n\n\n<p>The event&#8217;s organizers are also <a href=\"https://asia.wordcamp.org/2024/get-involved-with-wordcamp-asia-2024/\">calling for sponsors, media partners, and volunteers</a>. Prospective speakers are limited to two presentation submissions and can also indicate if they would be willing to be selected as a backup speaker. Applications will close on September 30, 2023. Speakers will be notified about the outcome of the selection process in November, followed by speaker announcements in December.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Aug 2023 04:12:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordPress Remembers: A Memorial To Those We Have Lost\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147472\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wordpress-remembers-a-memorial-to-those-we-have-lost\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2065:\"<p>WordPress is honoring contributors the community has lost over the years through a new memorial page called <a href=\"https://wordpress.org/remembers/\">WordPress Remembers</a>: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>WordPress dedicates this page to the memory of those we&#8217;ve lost. They&#8217;ve shaped our project and enriched our community. As we remember their passion and commitment to WordPress and open source software, we celebrate their spirit.</p>\n\n\n\n<p>Forever in our hearts, their legacy endures through every line of code and every user they&#8217;ve impacted.</p>\n</blockquote>\n\n\n\n<p>The page lists code and community contributors who left a lasting impact on the WordPress project, and links to their profiles and external blogs and memorial pages. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2204\" height=\"1278\" />\n\n\n\n<p>&#8220;As WordPress continues through the decades, we have to deal with all parts of life, including death,&#8221; WordPress co-creator Matt Mullenweg <a href=\"https://twitter.com/photomatt/status/1686795699093135360\">said</a>, introducing the page on Twitter. &#8220;As a community, we now have a memorial place we can remember and honor those who contributed to WordPress but are no longer part of this world.&#8221; In a followup tweet he added, &#8220;I will be on this page someday.&#8221;</p>\n\n\n\n<p>For a software project that is 20+ years old, with <a href=\"https://wordpress.org/news/files/2023/05/2022-Annual-Survey-Final.pdf\">an aging contributor base</a>, departures from this world will soon become more common. Visiting this memorial page is a heart gripping experience if you had the privilege of knowing any of these beloved contributors. It&#8217;s sobering to consider the impact and legacy of one&#8217;s investments in WordPress, but this elegantly designed memorial calls those questions to mind.</p>\n\n\n\n<p>If you know of someone who is missing from this page, you can contact <a href=\"mailto:memorials@wordpress.org\">memorials@wordpress.org</a> and volunteers will add them.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 20:59:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Post Status: What is Coaching &amp; What Are Key Times to Have a Coach with Kelly Gallagher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150057\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/what-is-coaching-what-are-key-times-to-have-a-coach-with-kelly-gallagher/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47846:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this podcast episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> introduces his professional coach, <a href=\"https://www.linkedin.com/in/coachkellygallagher\">Kelly Gallagher</a>, to discuss the role of coaching in personal and professional growth. They explore the difference between coaching and therapy and how they can complement each other. They highlight the value of coaching for high achievers and how it can help with career changes, improving performance, and enhancing communication skills. Cory shares his personal experience with coaching and expresses its positive impact on his life.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Episode Highlights:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li>[00:00:00] <strong>The role of coaching and introduction of Kelly Gallagher-</strong>Cory introduces Kelly Gallagher as his professional coach and discusses their working relationship for four and a half years.</li>\n\n\n\n<li>[00:01:25] <strong>Kelly&#8217;s background in business development and coaching training-</strong> Kelly shares her background in business development and her coaching journey, including her training and pursuit of a master&#8217;s degree.</li>\n\n\n\n<li>[00:07:38] <strong>The difference between coaching and therapy, and the value of coaching for high achievers</strong>-Cory and Kelly discuss the definition of coaching, the distinction between coaching and therapy, and the importance of coaching for high achievers.</li>\n\n\n\n<li>[00:11:39] <strong>The distinction between therapy and coaching-</strong>Discussion on the differences between therapy and coaching and how they complement each other.</li>\n\n\n\n<li>[00:12:41] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high achievers and the importance of self-awareness.</li>\n\n\n\n<li>[00:13:55]<strong> Times when people seek coaching-</strong>Identification of common situations that lead individuals to actively seek coaching, such as career conflicts, the desire for personal growth, and the need for support during organizational changes.</li>\n\n\n\n<li>[00:23:31] <strong>The role of coaching and the importance of ICF certification-</strong>Discussion on the role of coaching, the significance of ICF certification, and the difference between coaching and therapy.</li>\n\n\n\n<li>[00:28:34] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high performers and the potential negative stigma associated with coaching as a remedial tool.</li>\n\n\n\n<li>[00:31:58] <strong>Coaching for entrepreneurs-</strong>The essentiality of coaching for entrepreneurs, particularly in navigating change, making big decisions, and improving performance.</li>\n\n\n\n<li>[00:34:24]<strong> The role of coaching and seizing opportunities-</strong>Cory reflects on the importance of having a coach and making the most of opportunities in business.</li>\n\n\n\n<li>[00:35:18] <strong>The importance of personal happiness and joy in work</strong>-Kelly discusses the significance of finding joy and personal happiness in one&#8217;s work and how it affects performance.[00:37:09] <strong>The passion for helping others and personal growth-</strong>Kelly shares her passion for helping others find personal growth in coaching and how it is more rewarding than pure sales.</li>\n</ul>\n\n\n\n<div class=\"wp-block-group is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns sponsor has-theme-palette-8-background-color has-background is-layout-flex wp-container-18\" id=\"StellarWP\">\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"StellarWP has-theme-palette-1-color has-text-color wp-block-heading\" id=\"Sponsor\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <span><a href=\"https://poststat.us/elementor\" rel=\"sponsored nofollow\">Elementor</a></span></h3>\n\n\n\n<p><strong>Elementor </strong>enables web creators to build professional, pixel-perfect websites with an intuitive visual builder. Quickly create amazing websites for your clients or your business with complete control over every piece, without writing a single line of code. Join <a href=\"https://elementor.com/community/\">a vast community of web creators</a> from all around the world who deliver exceptional websites using Elementor.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow\"><div class=\"wp-block-image elementor-logo\">\n<img src=\"https://poststatus.com/wp-content/uploads/2022/08/Elementor-Logo-Symbol-Blue-150x150.png\" alt=\"Elementor\" class=\"wp-image-104033\" width=\"150\" height=\"150\" title=\"Elementor Logo\" />Elementor</div></div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://obcc.utdallas.edu/coaching/\">University of Texas at Dallas Coaching Program</a></li>\n\n\n\n<li><a href=\"https://coachingfederation.org/\">International Coach Federation</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/salesrxcoaching\">Kelly Gallagher</a>  (Executive Coach, <a href=\"https://gallagherexecutivecoachingpartnerships.com/\">Gallagher Executive Coaching Partnerships</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:00) &#8211; Hey everybody. Welcome back to Post Status Draft. I&#8217;ve got a special guest today and I&#8217;m excited because I&#8217;ve worked with this awesome person professional for I think it&#8217;s been five years now. Four years? No, probably four and a half years now, Kelly. And. So back when I had just sold items, I was working the, you know, my job at trying to transition team, get some things done in the year after we had sold and I was starting to percolate. Okay, I&#8217;ve got this huge career change coming up, this huge business, whatever change in my professional life. And I sought out a coach and found Kelly Gallagher. So she&#8217;s my professional coach for four and a half years. We&#8217;re going to have a great conversation talking about coaching times when it&#8217;s so helpful to have a coach. And I&#8217;ll share personal experiences, too, but you&#8217;re in for a treat today. So Kelly, thanks so much for being on the podcast.</p>\n\n\n\n<p>Kelly Gallagher (00:01:02) &#8211; Thank you for having me. I&#8217;ve been watching some of your podcasts, and I&#8217;m just honored to be the subject of one of them.</p>\n\n\n\n<p>Kelly Gallagher (00:01:07) &#8211; So thank you.</p>\n\n\n\n<p>Cory Miller (00:01:09) &#8211; I often refer to Kelly as my secret weapon because a lot of the big things that have happened in the last five years, for sure in my life I&#8217;ve rehearsed, practiced, talked through all of these with Kelly. So, Kelly, tell us a little bit about your background.</p>\n\n\n\n<p>Kelly Gallagher (00:01:25) &#8211; Um, Cory, I came from a business development specialty within corporate America, specifically pharmaceuticals and the medical industry, and also diagnostics and lab testing. So I was a road warrior. I was out closing deals and my responsibilities escalated and escalated to the point where. Um, the last ten years, I was with a diagnostic lab, and I was also training other salespeople. I was interviewing them, hiring them and then coaching them. But I didn&#8217;t know I was coaching because I wasn&#8217;t sure even what coaching was. I wanted to take over the training department. So I was told, Well, you have no experience, even though I was already doing it. So I challenged and said I would like to go back and get my masters.</p>\n\n\n\n<p>Kelly Gallagher (00:02:16) &#8211; And I entered the coaching program, which is a just gold standard industry. I don&#8217;t know. It turned out to be one of the best. And so I entered that. And then while I was doing it, I thought, why not just get a master&#8217;s in business administration? Because I already know these things. So I went to school for five years and it was the best five years of my life. Um, I learned that I love to learn, and I think that may be what separates good coaches from great coaches. Is that. Constant wanting to move the bar up, that constant going to class mentality to be at another level. And that&#8217;s what&#8217;s really defined my career. There&#8217;s not really a time of the year when I&#8217;m not in continuing education and it&#8217;s my passion. I just want to be a master of my craft. So that was my journey. The interesting sidebar is I was told you can do all this, but if your sales performance drops, we&#8217;re done. We&#8217;re not paying. I said, okay.</p>\n\n\n\n<p>Kelly Gallagher (00:03:29) &#8211; But the more I studied coaching and communications, the higher myself through. And there&#8217;s actually a correlation between the two. It doesn&#8217;t seem like there would be, but I learned how to really listen. I was a good listener to begin with, but I became just a great listener and observer of behavior. And I also learned how to challenge people. So if a buyer told me, yes, yes, I&#8217;m definitely going to get the contract signed. And I sensed a hesitancy, I would call them out and go, you know, you&#8217;re sending one thing, but I&#8217;m hearing something else. It sounds like you&#8217;re still uneasy. And a lot of times by doing that, I could tease out that they weren&#8217;t going to buy it and we can have further discussion. So the coaching actually when I finished up. My sales career. It was as far as I could take it, but I owe it all to the coaching training.</p>\n\n\n\n<p>Cory Miller (00:04:32) &#8211; That&#8217;s awesome. Now, I know you have ICF credentials and all that and you can share a little bit about what ICF is, but so I know you are very involved there.</p>\n\n\n\n<p>Cory Miller (00:04:45) &#8211; Have done there&#8217;s so many regular like you said, I do a lot of work with mental health practitioners and there&#8217;s such a very, I would say regulated, but no like very intense and purposeful way to do therapy. A lot of guidelines, a lot of regulations, a lot of licensure things, ethical consideration, continuing. Ed But coaching has so much of that too. And that&#8217;s where ICF comes into yes.</p>\n\n\n\n<p>Kelly Gallagher (00:05:12) &#8211; And unfortunately, there&#8217;s not a specific license. I wish there was, but because there isn&#8217;t, the consumer has to really be discerning. And one way to start is that ICF because it&#8217;s the gold standard and for coach is not doing continuing education and involved with ICF. I don&#8217;t know. Chances are there will be less rigor to what they&#8217;re going to be able to do. It&#8217;s not that they wouldn&#8217;t be good coaches.</p>\n\n\n\n<p>Cory Miller (00:05:40) &#8211; Yeah, I think the ICF stuff is strong. Sometimes I feel like it&#8217;s a little bit too limiting, but I go, Gosh, it&#8217;s so good because it&#8217;s trying to really professionalize the coaching industry where anybody can just say, Oh, I&#8217;m my coach, I&#8217;m a life coach, whatever it is.</p>\n\n\n\n<p>Kelly Gallagher (00:05:57) &#8211; People just hang out a shingle and say, Boom, magic, I&#8217;m a coach. I two think it can be limiting, but I offer a bit of a hybrid because I have so much business experience. I&#8217;ll often tell my clients, Hey, I&#8217;m going to shift out of coaching if you want. Is it okay if I put on my business act and they almost never had anyone say no in interviews? And so then I&#8217;m able to interject a little, you know what this happened to blah, blah, blah. And I think that&#8217;s what differentiates me from other coaches. But the ICF standards are just critical. And the other thing about the ICF is you have to have 250 hours of continuing education to keep getting the licensure. That&#8217;s not a license to keep, you know, being indoors. And so that really raises the bar and enables the coach to really grow because you&#8217;re constantly taking a course. Yeah.</p>\n\n\n\n<p>Cory Miller (00:07:02) &#8211; So super, super strong. By the way, if you&#8217;re listening, you want to look if the coach has ICF certifications and all that, that&#8217;s really important, rigorous, rigorous work that they do to keep that up means to me it goes through taking it very seriously their profession.</p>\n\n\n\n<p>Cory Miller (00:07:19) &#8211; So Kelly, what is a coach? We&#8217;re going to spend some time talking about the times in which coach has been so, so valuable to your clients, to me, and we&#8217;re going to share experiences around that. But first, I kind of want to get a baseline of like, what is a coach?</p>\n\n\n\n<p>Kelly Gallagher (00:07:38) &#8211; Great question. Mean a coach. I had this conversation this morning at the pool at 5 a.m. Someone said, Oh, you&#8217;re going to coach. They just want content. I said, No, that&#8217;s not really what coaching is. I&#8217;m not really delivering content. I think a coach is someone that walks on a journey with a professional who wants to raise the bar. Um, it can be a life coach too. So then you&#8217;re walking the journey with an individual who has an area of life where they want to improve or progress. And that&#8217;s still the same formula for going through the coaching process, whether it be an executive or whether it be. Someone who wants to increase communication with their husband or wife.</p>\n\n\n\n<p>Cory Miller (00:08:25) &#8211; So, yeah. And part of how we were working together when we first started working together was I was going to the same school you went to, which is fantastic. University of Texas and Dallas and their coaching program is incredible. And being mentored by you. And because I was getting asked when when I left our teams and I was trying to do my own thing, I thought, okay, it&#8217;s going to be coaching People go, What is it, Coach? What do you do? And I was like, Oh gosh, I&#8217;m struggling with these. But it&#8217;s so much that it&#8217;s that walking alongside a person on a journey and I like what you added to it, is like they want to raise the bar, they want to do something more. And, you know, I have so much reflected about my business entrepreneurial career for the last 15 years ago. If I had a coach from the beginning, it would have been so much better in many ways. Not just success, success for sure, but also health clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:09:23) &#8211; It&#8217;s funny you say that, Cory, because even 20 years ago when I was in pharmaceuticals and I was doing very well, had I had a coach, I would have been a rock star because there were rough edges that I couldn&#8217;t see. You can&#8217;t see them in yourselves the way someone else can who&#8217;s actively listening to you.</p>\n\n\n\n<p>Cory Miller (00:09:43) &#8211; Yeah. Well, and you know, the parallel we always give is sports. You know the best. Greatest of all time. Athletes have coaches and have people around them. Like you just assume they wake up and they&#8217;re just as good naturally. No, they work on their craft. And I think about that so much. Like, I know you work with a lot of high achievers and oftentimes so many of the entrepreneurs I&#8217;ve worked with very high achievers too. I&#8217;ve had the pleasure of having people on my team big time, high achievers. And you just go, like, if you really want to do well in what you&#8217;re doing, you need to have somebody that&#8217;s on your side.</p>\n\n\n\n<p>Cory Miller (00:10:23) &#8211; Nobody does it alone. I think that&#8217;s the fast that we perpetuate in our culture and especially in business, like with entrepreneurs, is like, Oh, I&#8217;m the rockstar. I do this by myself, that you got these icons out there. You know, Steve Jobs is the one you hear over and over and over 100,000 times. You go, He didn&#8217;t do it alone. No, there&#8217;s no way you can do it alone. And having someone in your corner that&#8217;s helping you perform at the highest level is so critical.</p>\n\n\n\n<p>Kelly Gallagher (00:10:54) &#8211; Yes, I agree. And, you know, oftentimes people will also say, well, isn&#8217;t it like therapy? I would call it therapy. Ten x. Because therapy&#8217;s great and I think everyone should go through that process at some time in their life. I really believe in it. But at some point it&#8217;s limited because it&#8217;s just keeps moving into the past and feelings and often sad feelings. Whereas coaches moving the person forward so high achievers get bored in therapy after a while, after a while, and they might go back and forth to therapy.</p>\n\n\n\n<p>Kelly Gallagher (00:11:34) &#8211; But generally they find that coaching helps them because it&#8217;s goal oriented.</p>\n\n\n\n<p>Cory Miller (00:11:39) &#8211; Yeah, well, and I know there&#8217;s a big distinction between therapy and coaching and really, you know, really try to their distinct things. And oftentimes probably you have taught this mentioned like therapy is looking back, coaching is looking forward. Is that how you kind of see that?</p>\n\n\n\n<p>Kelly Gallagher (00:11:56) &#8211; Yes. And you know, as a coach and a credentialed coach, I&#8217;m ethically bound if I feel like someone continually goes into therapy. Waters and themes, um, I&#8217;m bound to refer them on to therapists till they are more stabilized. And then oftentimes a lot of my clients are in therapy and coaching together. They really work well hand in hand.</p>\n\n\n\n<p>Cory Miller (00:12:22) &#8211; Yes. In fact, for the bulk of the time right now, I am not currently seeing a counselor, however, for the last see two months, but for the bulk of the time we&#8217;ve worked together have had a counselor and a coach. So I think their yin yang, their.</p>\n\n\n\n<p>Kelly Gallagher (00:12:41) &#8211; Right. And the people that come to me and have had some therapy, even if it was limited, they have just a little bit more self awareness.</p>\n\n\n\n<p>Kelly Gallagher (00:12:49) &#8211; So coaching progresses faster.</p>\n\n\n\n<p>Cory Miller (00:12:52) &#8211; Yeah. If you&#8217;re doing your work to.</p>\n\n\n\n<p>Kelly Gallagher (00:12:55) &#8211; Because other otherwise get clients. Sometimes we&#8217;ll say, Well, what does it matter how I&#8217;m feeling about this? Well, it matters a lot because, you know, your heart is just as involved in these decisions and actions and creative things you&#8217;re asking yourself to do as the frontal lobe of your brain. So they are connected.</p>\n\n\n\n<p>Cory Miller (00:13:14) &#8211; Yeah. Okay. So we talked about what coaching is a little bit we talked about the distinctions, therapy versus coaching and how they&#8217;re additive and can exist together. And in fact, or even better sometimes, oftentimes, especially in my experience, I would say. Well, I&#8217;m curious, Kelly So I know my own personal experience is related to our coaching professional relationship. But I&#8217;m curious, what are the times you you see people getting into the meat of this kind of conversation between us is like, what are those times when people go, okay, they&#8217;re thrust out to go actively look for a coach and end up, you know, in a in a room or a meeting with you.</p>\n\n\n\n<p>Kelly Gallagher (00:13:55) &#8211; I would say that generally there&#8217;s some type of struggle. It can be a conflict at work. That&#8217;s a huge one because that dips into, well, do I want a career change? And sometimes people come and they don&#8217;t know what they want. They&#8217;re just not happy. Um, people who want to progress with that and find meaning and integrate what they&#8217;re learning about themselves will come to coaching because that process. It really it&#8217;s like turbocharging the job search and turbocharging people to take interviews and move on and move up without really any kind of formal instruction to just that self-awareness that it builds. So that&#8217;s one of the big ones. Um.</p>\n\n\n\n<p>Cory Miller (00:14:44) &#8211; Let&#8217;s talk about struggle for a second. So struggle back to that. So is that so you mentioned a couple of factors there. I want to hit both sides. One is maybe I need to make a change, like move out of what I&#8217;m doing. But there&#8217;s another one, which is maybe I want to get promoted or have been promoted or, you know, within an organization to and I&#8217;m curious your experiences around around that too.</p>\n\n\n\n<p>Cory Miller (00:15:10) &#8211; So I like that it starts with like there&#8217;s some kind of struggle and they&#8217;re seeking outside perspective and help support with that. But it starts with some things they&#8217;re trying to change and wrestling against. Sounds like.</p>\n\n\n\n<p>Kelly Gallagher (00:15:24) &#8211; Right? And many times, you know, when you&#8217;re in a new position or you&#8217;re in a position where you are striving to do something else within that company, you will conform to their expectations and almost wear a mask. The to the degree that you lose something in the translation because then you&#8217;re not really connecting with your creative side or your problem solving side or your heart. And so a lot of work can be done to find that balance for people. The other thing that touches on is fear of failure. Your fear of failure is. It&#8217;s just a sweet spot because so many. Points of wanting to change. If we whittle down and we go with the client, what&#8217;s beneath that? What&#8217;s beneath that or what&#8217;s beneath that? And we get down to the core or the middle of the onion. It&#8217;s fear of failure.</p>\n\n\n\n<p>Kelly Gallagher (00:16:19) &#8211; And that&#8217;s that&#8217;s just a part of being human. No one wants to humiliate themselves or fall down. But I think, too, in our society, think about schools nowadays. Everyone&#8217;s given a trophy. Soccer, Everyone&#8217;s campaigning, trophy swimming. Everyone makes the team. No one&#8217;s not on the team. Great. So children are raised to not really fail or understand that they founded something and think in a way, I like the philosophy, but in a way I think I see a lot of young adults who come out into the world and they are terrified of not getting a trophy of not. And the reality is, in real life, you don&#8217;t get that many trophies.</p>\n\n\n\n<p>Cory Miller (00:17:06) &#8211; Yep. Well, we that was that fear of failure thing. We, we talked our last coaching session about that specifically and totally like, you know, when you&#8217;ve especially if you&#8217;ve been accustomed to winning, doing succeeding and then you hit some failures and or trying to do anything big and new, take that next job, start that new endeavor, whatever that is, and that, you know, oh, this is not a guaranteed success.</p>\n\n\n\n<p>Cory Miller (00:17:35) &#8211; So that that definitely resonates.</p>\n\n\n\n<p>Kelly Gallagher (00:17:37) &#8211; Right? And if I fail, that also relates to a further theme of then the fear of being actually seen for who you are. Um, yeah, it&#8217;s a heavy topic and it can take a while to work through, but it&#8217;s, I think most of my clients will say that&#8217;s valuable work. And it&#8217;s not that they become fearless, but I think they&#8217;re able to notice the emotion name and then kind of negotiated.</p>\n\n\n\n<p>Cory Miller (00:18:08) &#8211; Yeah, you mentioned the word emotions. And I think when I first started working with you, I didn&#8217;t I didn&#8217;t go to that realm. I was, you know, okay, more intellectual thinking process and stuff. And you&#8217;re extremely helpful with that. And probably because of some of the, you know, understandings between therapy and coaching or misunderstanding to say, I didn&#8217;t really get into that. But I think our best work has come with the emotions. Like my my definitely I&#8217;ve benefited every time we&#8217;ve talked. I&#8217;ve been better for it. However, I think the most profound times is when we get into, okay, I&#8217;m doing this thing.</p>\n\n\n\n<p>Cory Miller (00:18:48) &#8211; It&#8217;s an event, like you said, a struggle or something new or a change or something I&#8217;m preparing for. But then okay, the emotion around that and understanding that and leveraging, you know, really deep dive into that where I&#8217;m trying to improve. I can&#8217;t remember how many times you&#8217;ve said to me, okay, well they are not in this call. What is the what about you? And I was like, Oh man, doing that hard work, which is made I know it&#8217;s made me better as a professional and a leader for sure, because oftentimes you kind of redirect back to me and go, okay, well, they&#8217;re not here. Let&#8217;s talk about what this means to you, for you. And I&#8217;m always like, Well, let me take a deep breath on that one.</p>\n\n\n\n<p>Kelly Gallagher (00:19:31) &#8211; That&#8217;s a hard one. I learned that actually didn&#8217;t learn that at Utd or anywhere. I learned that as a young rep out in the field and I complain about these idiot customers. Right? And the manager told me once, he said, Turn your rearview mirror to your face.</p>\n\n\n\n<p>Kelly Gallagher (00:19:48) &#8211; And I didn&#8217;t. He goes, Now look at that. That&#8217;s the person that would have to change. The client&#8217;s not going to change. And it was the most profound thing. It kind of hurt my feelings, but it was so true.</p>\n\n\n\n<p>Cory Miller (00:20:01) &#8211; Well, I&#8217;ve talked through everything with you from partner team issues, all that. And it&#8217;s been so helpful because I think oftentimes kind of thinking, okay, yeah, they&#8217;ve got to change. There&#8217;s something with them. And the real work, profound and deep, that continues to get deeper is what does that mean for me about me? What do do I need to change something and what is that? And those are the times really in reflective work that I go, okay. And more and more I think I&#8217;m getting it. Or I go, okay, So something I&#8217;m not aware about myself potentially pointing outwards and then going, I kind of need to turn the rearview mirror back to myself.</p>\n\n\n\n<p>Kelly Gallagher (00:20:46) &#8211; Back to your face? Yes.</p>\n\n\n\n<p>Cory Miller (00:20:48) &#8211; It&#8217;s not the easiest thing to do, but I&#8217;m glad you do it.</p>\n\n\n\n<p>Kelly Gallagher (00:20:50) &#8211; It&#8217;s not the easiest thing to do. And in periods of conflict or intense conversations with bosses or calling people, you&#8217;re supervising, it&#8217;s extremely hard to stop yourself and say, wait a minute, who am I? And yeah, it&#8217;s it&#8217;s really, really hard. But I think as people progress in coaching, they become almost a coach within themselves.</p>\n\n\n\n<p>Cory Miller (00:21:16) &#8211; Yes. Yes. I can hear you quite a bit doing that.</p>\n\n\n\n<p>Kelly Gallagher (00:21:21) &#8211; Yeah. Oh yeah. So that would be my goal is that when I&#8217;m not there because I&#8217;m not there all the time and I don&#8217;t know of it, even though I know so much, I don&#8217;t know all of it. But my goal would be when that person&#8217;s gone for a week or they&#8217;re in a high stress situation, they&#8217;re able to somewhat coach themselves through it.</p>\n\n\n\n<p>Cory Miller (00:21:44) &#8211; Absolutely. Well, okay. So we talked about like the struggle conflict. Something&#8217;s going on there. Want to do reach something new? Maybe they&#8217;re evaluating a big change. I mean, that resonates with me. I was that&#8217;s how we kicked off our thing.</p>\n\n\n\n<p>Cory Miller (00:21:59) &#8211; It was like I was changing my profession career very substantially, knew I was going to be leaving the company I started. And, you know, okay, here&#8217;s a totally new avenue and having somebody to talk that through the fear of failure, the emotions of being an achiever, especially a high achiever, trying to do something in the world like an entrepreneur, what are some other things that you you see often in your coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:22:27) &#8211; Well, I would say the other thing, the theme is some type of organizational change, because your organization, of course, they&#8217;re always changing. And there are new standards that people don&#8217;t. We talked about that before we went on tape that sometimes people don&#8217;t like change. So being able to go in and help a person challenge their assumptions about the change really recognize within themselves the any negative thinking loops or or extra baggage they&#8217;re bringing in the situation and then thrive throughout the change would be a big thing. Um, and as they go along to they learn about themselves and then to integrate that learning.</p>\n\n\n\n<p>Kelly Gallagher (00:23:12) &#8211; Back into the organization. That&#8217;s changing because change is constant. Yep. I don&#8217;t think I&#8217;ve ever been in an organization in 30 years that wasn&#8217;t doing some type of change. It&#8217;s almost never stay.</p>\n\n\n\n<p>Cory Miller (00:23:31) &#8211; It&#8217;s yeah, absolutely. Well, there&#8217;s two things I think about when we&#8217;ve worked together and what I know of coaching too. It&#8217;s it&#8217;s the word change that you said. Some change. Big change oftentimes big change. The other side of the coin for me is performance.</p>\n\n\n\n<p>Kelly Gallagher (00:23:47) &#8211; So yeah.</p>\n\n\n\n<p>Cory Miller (00:23:49) &#8211; Continual performance. So like and I think about those listening in why you won&#8217;t get you want to get coaching for yourself and your team is that performance factor like it&#8217;s an investment back into yourself or your team if you&#8217;re providing coaching. I think some great organizations, particularly in WordPress I&#8217;ve heard of because I&#8217;ve referred people to you that happen to be in WordPress. I go, Oh, I love the forward thinking of that. You&#8217;re going, it&#8217;s an investment in their people, but the performance side. So we&#8217;ve talked a lot of some about this change side.</p>\n\n\n\n<p>Cory Miller (00:24:24) &#8211; There&#8217;s something going on and how we wrestle and adapt to that change where we talk about motions and different things and then but the other side to me is like, I can&#8217;t remember how many times I call it performance, but what I think it is, is like preparation. I mean, some of the biggest deals I&#8217;ve done in five years have been rehearsed, practiced, polished, perhaps even with you. And gosh, I didn&#8217;t have that my previous ten years. And I thought, wow, I went into so many situations. I thought I had done my preparation. But doing it with you with a coach was made things so much better, I think, through that process. Kelly It also eliminated like things I wasn&#8217;t aware of, things I hadn&#8217;t thought about, and just an approach to get some, like, clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:25:12) &#8211; Flirty, some big one. And I think that goes into the third bucket of communication skills. Just people sometimes come to me and in her struggle or there&#8217;s conflict or they&#8217;re going into a big sales promotion and they&#8217;re not quite sure how to go about it.</p>\n\n\n\n<p>Kelly Gallagher (00:25:29) &#8211; So that would all fall into the bucket of communication skills. And that that&#8217;s a big one. I don&#8217;t think oftentimes people think they&#8217;re coming across one way, but it&#8217;s quite different if you&#8217;re observing them. The other thing is. They, you know, like you said, you&#8217;ll rehearse. And rehearse. But when you get in that situation sometimes. Hopefully you&#8217;re primed with enough rehearsal to lean back. If you forget what you&#8217;re going to say, you can lean back into the gist of it. So I think for performance, though, it comes down to communication skills and confidence, because in selling some time it&#8217;s not what you said anyway, it&#8217;s how you said it. And you can walk in if you say it with conviction and you have that internal clarity, as you mentioned, and conviction. The little wordsmithing and nuances of it aren&#8217;t going to matter. They&#8217;re going to matter. But the big the capital A to achievement or performance is how you set it.</p>\n\n\n\n<p>Cory Miller (00:26:36) &#8211; Well, I didn&#8217;t say this in the beginning, but we we now meet twice a week and we&#8217;ve I think we&#8217;ve met twice a week for the last year or two.</p>\n\n\n\n<p>Cory Miller (00:26:44) &#8211; And that was out of, oh, I need these times. We&#8217;re kind of booking them at the front of the week and the end of the week. But oftentimes I realize so many times it&#8217;s just seeking clarity for myself and those of us who are leaders out there trying to give a clear vision to somebody else, I&#8217;ll just say it. Maybe other leaders just wake up with clairvoyant vision. I don&#8217;t. I need rehearsal. I need work. I need to bounce it off people. I need a coach to help me kind of ask questions, think, think it through. And every single time I&#8217;m better. I remember some of the biggest ones that I&#8217;ve, like, talked to you. And it&#8217;s not even one session, maybe 2 or 3. They end up talking about it. But I go, Gosh, if I hadn&#8217;t had that, I would have made so many mistakes going into that big decision or time of presentation, whatever that was. And I&#8217;m so better for like I just need to practice and realize I couldn&#8217;t just do that.</p>\n\n\n\n<p>Cory Miller (00:27:40) &#8211; I needed someone else to help me. And that&#8217;s where you&#8217;ve come in and done that. And so clarity for me is like when you say, what? When people would ask me, What&#8217;s the biggest takeaway for coaching? I go clarity and what is clarity? Build what you said confidence. And those two alone have made me a better leader. That&#8217;s why I can say, let&#8217;s just go back to the start of my career. If I&#8217;d had a coach, it started my career. Everything would have been better because I&#8217;ve been more clear, more confident.</p>\n\n\n\n<p>Kelly Gallagher (00:28:03) &#8211; Being a millionaire ten times over just had a coach because I did so many stupid things along with the good things. That you don&#8217;t know, but you do learn from failure. You do learn. Oh, and so, you know, maybe not, but I sure would have liked to have a coach. It is a perk for high performers. If if if you if it&#8217;s a if there&#8217;s an employer listening in and they&#8217;re thinking of who does that need coaching? Yes, it can be remedial, but sometimes then it&#8217;s not the employees idea.</p>\n\n\n\n<p>Kelly Gallagher (00:28:34) &#8211; The high performance will progress the fastest because it generally will be their idea. They want that perk and they want to grow a career.</p>\n\n\n\n<p>Cory Miller (00:28:44) &#8211; This is my personal opinion, not Kelly. So I want to be clear about that. But I&#8217;ve been around organizations that use coaching as remedial, and I go, Then what happens is coaching gets stigmatized within that organization of if you&#8217;re not performing and you&#8217;re doing a crappy job, you&#8217;re going to get sent. And it has a negative tint to coaching, which is not what it&#8217;s supposed to be. It&#8217;s supposed to be progressing positive, helping improving, navigating situations. And this one organization in particular, it&#8217;s like that&#8217;s how they use coaching. I go, Oh man, Like, then they then all these high performers have this worry about it and don&#8217;t want to potentially go into coaching and miss this incredible benefit to what coaching is.</p>\n\n\n\n<p>Kelly Gallagher (00:29:31) &#8211; That&#8217;s so true. There&#8217;s someone at my door. Can I. Can we pause?</p>\n\n\n\n<p>Cory Miller (00:29:36) &#8211; Yeah.</p>\n\n\n\n<p>Kelly Gallagher (00:29:45) &#8211; Yeah, we&#8217;re talking about, like, high performers and performance coaching. And I do want to make the point that that&#8217;s kind of what I think is my differentiator is that I have all that coaching training, but also I&#8217;ve been in the business world for 30 years selling. So if someone asked me about that, it&#8217;s easy for me to switch out. Yeah, most coaches have like a background, so they&#8217;ve never really had to go out into the world and perform, right?</p>\n\n\n\n<p>Cory Miller (00:30:17) &#8211; Yeah. You bring both sides to that coin I think is incredibly helpful. Like I&#8217;ve talked so much with you about cells because it&#8217;s a weak area. I feel like it&#8217;s a weak area for me, but something I&#8217;ve had to do but forced to do and now trying to begrudgingly trying to do it. But I know you&#8217;ve got such an extensive sales background, business development background that totally leveraged that. In fact I think that&#8217;s how our two times a week started was a sales academy where it wasn&#8217;t necessarily coaching, it was more like sales coaching.</p>\n\n\n\n<p>Kelly Gallagher (00:30:47) &#8211; Right. And it&#8217;s very hard for someone to coach you if they haven&#8217;t walked down the street, guide you down the path. If I&#8217;ve never been on it, I can coach and I can move you in many ways, but can&#8217;t exactly help you to perform because I don&#8217;t know how to perform. So I think that is the differentiator in my coaching style as I&#8217;ve been there. I&#8217;ve been in sales meetings where I got humiliated. I&#8217;ve had clients slam doors in my face. You know, I&#8217;ve executed $1 million contract. So. I just think it helps me to bring more to the party.</p>\n\n\n\n<p>Cory Miller (00:31:25) &#8211; Yeah. And you understand the complete picture. That&#8217;s why, you know, our community is a lot of founders and a lot of high achiever leaders. You know, I&#8217;m curious your thoughts about entrepreneurship, entrepreneurs and coaching. You know, I don&#8217;t know your risk, your client base, but I am one. I know I&#8217;ve benefited from incredibly navigating change, big decisions and the performance side. But what do you say to entrepreneurs about coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:31:58) &#8211; I&#8217;d say it&#8217;s essential because of everything we&#8217;ve talked about in the end.</p>\n\n\n\n<p>Kelly Gallagher (00:32:04) &#8211; As an entrepreneur, you&#8217;re alone, right? That&#8217;s what it is. That&#8217;s the gig. You might have a few people on your team, but generally you&#8217;re alone. It&#8217;s very hard to win deals in isolation. So I would say having a business coach is key to moving forward. Not only in all the things we mentioned, the clarity, the communication, the conflict, the struggle, but then sometimes you just have to go execute. And so for me, it&#8217;s very helpful because I&#8217;ve been in that sales situation so many times and understand features, benefits. I understand how to extrapolate from a client what&#8217;s going to really matter and what&#8217;s not. And I can help people with their slide deck or, you know, whatever it is they want to. So I will generally I can come in in that regard like we do and be a consultant on Friday, but a coach on Mondays. And then and most of my clients who are entrepreneurs use me in that way. Like they will sometimes just bring us like back or we&#8217;ll practice a presentation or they&#8217;ll practice what they&#8217;re going to say to their team before they say it.</p>\n\n\n\n<p>Cory Miller (00:33:18) &#8211; Yep.</p>\n\n\n\n<p>Kelly Gallagher (00:33:18) &#8211; Get some clarity around it to understand. How they&#8217;re feeling in that moment of saying these wonderful things they think are are going to move the team. And sometimes they come out of the meeting and they&#8217;re going to say something completely different. Once we do the coaching, it&#8217;s not that I ever told them to say anything different, but we, you know, polished it. Let&#8217;s say, you know, they come out with this big chunk of coal and they leave and they&#8217;ve got a little diamond and it&#8217;s polished. And like you said earlier, they feel confident.</p>\n\n\n\n<p>Cory Miller (00:33:50) &#8211; Maybe there&#8217;s some entrepreneurs that that come fully birthed into the whole process, but most of us have to learn it and grow through it. What I&#8217;m hearing, though, you know, big decisions, big challenges, big changes, and then the performance side preparation, Polish getting ready for those big things, too. And then the simply put, just trying to make the most of the opportunity. That&#8217;s what I think about. Like so many high achievers that go with an entrepreneur&#8217;s, like we have an opportunity.</p>\n\n\n\n<p>Cory Miller (00:34:24) &#8211; We often like my my story is I stumbled into it, stumbled into it and go, wow, I have this amazing opportunity. So much with business. You go like, it&#8217;s right timing, it&#8217;s right place, right people, right, partners, all the things that have to go together for something to go really well. And then you go, I want to make the most of that. And that&#8217;s my reflection, is that I had an opportunity. I wanted to seize that opportunity to make the most of it. Now, seeing, Oh, wow. Now I did have a coach during about half of my business time, invaluable to help us with the organization. But I go like having someone that this is why we keep working together as I go. I just need it. It&#8217;s just a part of making the most of who I am and my opportunities that come my way to to do even more. And it&#8217;s not necessarily just about money, but it&#8217;s about making the most of the opportunity.</p>\n\n\n\n<p>Kelly Gallagher (00:35:18) &#8211; Right.</p>\n\n\n\n<p>Kelly Gallagher (00:35:19) &#8211; And Joy, while you&#8217;re doing you we haven&#8217;t even touched about that. But there&#8217;s that personal happiness factor and a lot of my clients either are working out or I have them. I try to persuade them to start a fitness program while they&#8217;re with me. But that joy, that love of what you&#8217;re doing, you know, if it&#8217;s not there, it&#8217;s very hard to perform on your.</p>\n\n\n\n<p>Cory Miller (00:35:43) &#8211; Yeah. And you&#8217;ve been such a good coach and you walk that talk. Kelly was telling me before we started the recording that she just ran a mile and swam, and I was like, Gosh, you overachiever. But it&#8217;s such a good inspiration for me for sure, because that other aspect of just life and business and everything is just being physically healthy. And you are a great encourager and you walk your talk.</p>\n\n\n\n<p>Kelly Gallagher (00:36:07) &#8211; I try. I try. I try. I mean, no one&#8217;s perfect. But yeah, I definitely try. And I also find because I work out a lot and I&#8217;m more effective for people because, you know, it brings all that blood flow to the brain.</p>\n\n\n\n<p>Kelly Gallagher (00:36:20) &#8211; So I shared with Cory that sometimes in between clients I&#8217;ll just run up the hill outside my house 4 or 5 times just to sharpen myself for the next person because I can feel it within myself. Then I come in their house and I&#8217;m all happy again and I&#8217;m feeling creative and supercharged and ready to go.</p>\n\n\n\n<p>Cory Miller (00:36:41) &#8211; Oh yeah. You can tell what the energy you have for sure. Well, Kelly, thanks so much for taking the time to talk to us about what you&#8217;re doing. Share a little bit of the experience. I mean, they resonate with me. Everything you&#8217;ve talked about are things that we&#8217;ve worked on in our coaching sessions, and I&#8217;ve been better for it as a person on Earth, as a human, on earth, as a business entrepreneur, leader, all those. But anything else that you want to share that we didn&#8217;t get to talk about?</p>\n\n\n\n<p>Kelly Gallagher (00:37:09) &#8211; No, I mean, what you just said, that&#8217;s what I live for. That&#8217;s my passion is did I, you know, did I help someone? Did they feel better after we, you know, did we move the bar? And I just live for success stories.</p>\n\n\n\n<p>Kelly Gallagher (00:37:23) &#8211; And I find it so much more rewarding than just pure sales. Although I would have argued back then that I was making people&#8217;s lives better because I had a terrific product or whatever, but somehow that what you just said, just seeing personal growth in other people, I just kind of live for that. So thank you.</p>\n\n\n\n<p>Cory Miller (00:37:43) &#8211; Bet. Well, thanks, Keller, for being on. And thanks, everybody, for listening. We&#8217;ll share in the show notes how you can get a hold of Kelly if you&#8217;re interested in talking more with her. She&#8217;s fantastic. Coach, you can&#8217;t. I&#8217;ve referred you numerous times to people that now I believe are our regular clients with you. And we they&#8217;re defensive minded and we always talk like, yep, I just had my Kelly session, just had my Kelly Sessions, so.</p>\n\n\n\n<p>Kelly Gallagher (00:38:08) &#8211; Well, thank you for doing that. Yes. I don&#8217;t really advertise. I haven&#8217;t ever. I only did maybe in the first year. But I think that&#8217;s the other thing. Good coaches just kind of get referrals and.</p>\n\n\n\n<p>Kelly Gallagher (00:38:21) &#8211; That&#8217;s the way it should be.</p>\n\n\n\n<p>Cory Miller (00:38:23) &#8211; You do. All right. Thanks, everybody, for listening to Post Status Draft. It&#8217;s been another episode kind of went out of our league but love to introduce people that have made an indelible difference in my life and to share their wisdom. So we&#8217;ll see everybody next time. Thank you.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 20:51:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Do The Woo Community: Scaling and Performance with Justin Mazzi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75777\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://dothewoo.io/scaling-and-performance-with-justin-mazzi/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:392:\"<p>Zach and Carl are joined by Justin Mazzi from A2 Hosting to chat about all things hosting, performance and more.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/scaling-and-performance-with-justin-mazzi/\">Scaling and Performance with Justin Mazzi</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 10:43:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: BuddyPress 12.0 to Introduce Community Visibility Feature that Restricts Access to Members Only\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wptavern.com/buddypress-12-0-to-introduce-community-visibility-feature-that-restricts-access-to-members-only\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2165:\"<p>BuddyPress 12.0 is set to introduce <a href=\"https://bpdevel.wordpress.com/2023/07/30/bp-dev-chat-summary-for-july-17-agenda-for-july-31/\">a new Community Visibility feature</a> that gives site administrators the option to restrict access to the community sections of the site. Sites set to &#8220;members only&#8221; will show an access error message and a login form when a non-logged-in user tries to view a page generated by BuddyPress.</p>\n\n\n\n<img width=\"936\" height=\"561\" />\n\n\n\n<p>The Community Visibility setting makes it possible to create a private community site without adding any plugins to BuddyPress, a feature that has frequently been requested by BuddyPress site admins. It is being introduced as a basic toggle but BuddyPress contributor David Cavins, who worked on the feature, said it lays the groundwork for future, more granular privacy controls.</p>\n\n\n\n<p>The BuddyPress core development team has also published the <a href=\"https://wordpress.org/plugins/bp-classic/\">BP Classic</a> plugin ahead of the 12.0 release. The plugin provides backwards compatibility for sites using plugins or themes that are not ready for the BP Rewrite API that will be introduced in 12.0. It  includes features and templates that are fully deprecated: </p>\n\n\n\n<ul>\n<li>The BP Legacy widgets (these were migrated as Blocks in BuddyPress 9.0.0).</li>\n\n\n\n<li>The BP Default theme.</li>\n\n\n\n<li>The BP Legacy navigation globals (<code>buddypress()->bp_nav</code> &amp; <code>buddypress()->bp_options_nav</code>).</li>\n</ul>\n\n\n\n<p>An <a href=\"https://buddypress.org/2023/07/bp-classic-1-0-0/\">advisory about BP Classic</a> was posted to the official BuddyPress blog to help site owners figure out if they will need this plugin. Those who require it before upgrading can install it ahead of time and it will be dormant until it is needed. </p>\n\n\n\n<p>The new Community Visibility feature was <a href=\"https://buddypress.trac.wordpress.org/changeset/13533\">committed</a> to trunk five days ago and is on track to be included in the next major release. BuddyPress 12.0 is anticipated to be released on October 30, 2023, and Beta 1 is overdue and expected any day.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 21:02:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: WordPress.com Makes a Bid for Google Domains Customers, Offering 1 Million Free Transfers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147374\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/wordpress-com-makes-a-bid-for-google-domains-customers-offering-1-million-free-transfers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5370:\"<p>WordPress.com is making a strong bid for Google Domains customers after the the product was sold to Squarespace in a deal reportedly worthy $180 million. Shortly after the sale was announced, WordPress.com <a href=\"https://wordpress.com/blog/2023/06/21/how-to-transfer-your-domain-to-wordpresscom/\">pitched Google Domains customers</a>, reminding the public that the company is also a domain registrar, but the call to action didn&#8217;t include much incentive to switch.  </p>\n\n\n\n<p>This week WordPress.com is putting the heat on with a new offer to pay transfer fees and an additional year of registration for the first million domains moved from Google Domains. WordPress.com is also guaranteeing Google Domains customers the same pricing or lower for 400+ top-level domains.</p>\n\n\n\n<p>&#8220;This will also apply to existing WordPress.com customers across most domains, meaning that in many cases we’re lowering your prices.&#8221; Automattic CEO Matt Mullenweg said in the <a href=\"https://wordpress.com/blog/2023/08/01/transfer-unlimited-google-domains-to-wordpresscom-for-free/\">announcement</a> this week.</p>\n\n\n\n<p>&#8220;This isn’t a temporary thing. We’re committed to keeping domain prices low, and will only raise them if our wholesale costs go up (we’ll run our domains business like Costco).&#8221;</p>\n\n\n\n<p>Squarespace has committed to honor the renewal prices previously set by Google Domains existing customers for 12 months but will set its own prices after this time. </p>\n\n\n\n<p>In an <a href=\"https://www.theverge.com/23795154/squarespace-ai-seo-web-social-algorithms-anthony-casalena\">interview with The Verge</a>, Squarespace CEO Anthony Casalena said his company is already using a lot of the same infrastructure Google is using in their Cloud DNS product, having  resold Google Workspace for almost a decade. Squarespace currently employs 1,750 people with revenue under a billion dollars this year. Acquiring Google Domains gives the company the opportunity to cross-sell website packages to its incoming domain customers. There are approximately 10 million domains up for grabs in the transfer of customers.</p>\n\n\n\n<p>Casalena said that being a reseller of Google Workspace was a major factor in Google&#8217;s decision to offer the domains to Squarespace, in addition to having the infrastructure to manage the business. This partially explains what was an otherwise bewildering deal that came as a surprise to the industry:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>First off — once in a lifetime opportunity for us. Incredibly grateful that we were selected as the stewards of that business. We weren’t asking them, like, &#8216;Hey, planning on shutting down domains or anything?&#8217; It wasn’t exactly outbound. I think they made the decision that it’s not a business that they were going to be in. And they contacted a couple of legitimate parties who could potentially even take on a business of that size because, again, it’s not the code or the employees are moving — it’s basically the domains themselves and the hosting services and the registrations, that sort of thing. So that really narrows it down to the number of companies that could even support that.</p>\n\n\n\n<p>Then the other thing that was a big factor is we’ve been a huge fan and big reseller of Google Workspace for nearly a decade now, which was very important to them, and we’re incredibly sophisticated in selling Domains, selling Google Workspace, servicing it, and managing that for millions of people. So we were able to find a transaction that worked for us. </p>\n</blockquote>\n\n\n\n<p>Automattic CEO Matt Mullenweg <a href=\"https://twitter.com/photomatt/status/1686393926603644928\">reacted</a> to the deal on Twitter this week, saying that he was disappointed Google didn&#8217;t make it a more competitive process. </p>\n\n\n\n<p>&#8220;This might cost a ton of money but I was bummed we didn&#8217;t even get a crack at this, my guess is Cloudflare, Godaddy, and Bluehost didn&#8217;t either—why Google didn&#8217;t make this a competitive process?&#8221; Mulleweng said. &#8220;Concerning to have so many domains going to a proprietary CMS.&#8221;</p>\n\n\n\n<p>WordPress.com has been slowly inching towards becoming a one-stop shop for users&#8217; website needs. The company recently <a href=\"https://wptavern.com/wordpress-com-makes-monetization-features-available-for-free\">made its monetization features available for free</a>, making the platform more attractive to creators who are just starting out online. Based on the reaction to Mullenweg&#8217;s tweet, it seems many people are still not aware that they can buy their domains from a registrar and host their websites elsewhere. If you are just hearing about WordPress.com&#8217;s domains, it&#8217;s natural to think they are only for WordPress sites, so the company has some work to do in making prospective customers aware.</p>\n\n\n\n<p>Users can be hesitant to move to a new registrar when they don&#8217;t fully understand the process and don&#8217;t want to negatively impact their online presence. In the case of Google Domains customers, they are moving to a new registrar after the sale closes later this year, whether they like it or not. WordPress.com&#8217;s deal is a compelling offer if they can better position their domains as an independent service.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 17:11:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Gutenberg Times: Live Q &amp; A: Design Systems and theme.json\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:62095:\"<p>One of the key challenges of running a site or series of sites at scale is ensuring design consistency and compliance with a design system. During this show, <strong>David Bowman</strong>, principal designer and <strong>Alec Geatches,</strong> JavaScript Developer, both at WordPress VIP will demonstrate the process to export the design system tokens from Figma and import to WordPress.  <strong>Joni Halabi</strong>, Georgetown University, shared how her team at the university works within a different design system. The Panel also discussed WordPress as an enterprise-ready software and Gutenberg being a design system in the making.  The show was hosted by  Birgit Pauli-Haack, curator of the Gutenberg Times.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<p class=\"has-large-font-size\"><strong>Shared Resources: </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge\">Repository for the design bridge</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge/blob/trunk/docs/design-tokens-example/README.md\">Tutorial about Figma Tokens Tutorial </a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/develop-your-first-low-code-block-theme/\">Develop Your First Low-Code Block Theme</a></li>\n\n\n\n<li>U<a href=\"https://learn.wordpress.org/courses/#using-the-site-editor\">sing the Site Editor Courses:</a> </li>\n\n\n\n<li>Plugin <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create-Block-Theme</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/41547\">Governing block settings and interactions</a></li>\n\n\n\n<li><a href=\"https://twig.symfony.com/\">Twig: PHP template engine</a></li>\n</ul>\n\n\n\n<p>Also: </p>\n\n\n\n<ul>\n<li><a href=\"https://bigbite.net/2021/02/18/whitepaper-implementing-a-design-system-into-wordpress/\">White paper – Implementing a design system into WordPress</a> by BigBite</li>\n\n\n\n<li><a href=\"https://wpvip.com/2022/12/15/using-a-design-system-with-the-wordpress-block-editor-pt-1-theme-json/\">Using a Design System with the WordPress Block Editor Pt. 1: theme.json</a></li>\n\n\n\n<li><a href=\"https://wpvip.com/2022/12/22/using-a-design-system-with-wordpress-block-types-styles/\">Using a Design System with the WordPress Block Editor Pt 2: Block Types and Styles</a></li>\n\n\n\n<li><a href=\"https://wpvip.com/2022/12/09/figma-to-wordpress/\">Exporting Design System Tokens From Figma to WordPress</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-large-font-size\"><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-strong-introductions-strong\">Introductions</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-strong-finding-and-working-with-design-systems-strong\">Finding and Working with Design Systems</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-strong-figma-and-theme-json-strong\">Figma and Theme.json</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-strong-theme-json-or-classic-theme-strong\">Theme.json or Classic Theme</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-website-demo-strong\">Website Demo</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-strong-bidirectional-strong\">Bidirectional</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-strong-opinions-using-word-press-strong\">Opinions using WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#8-strong-using-core-blocks-strong\">Using Core Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#9-strong-patterns-strong\">Patterns</a></li><li><a href=\"https://gutenbergtimes.com/feed/#10-strong-links-and-syncs-strong\">Links and Syncs</a></li><li><a href=\"https://gutenbergtimes.com/feed/#11-strong-changing-design-practices-how-to-start-strong\">Changing Design Practices &#8211; How to Start</a></li><li><a href=\"https://gutenbergtimes.com/feed/#12-strong-create-block-theme-strong\">Create Block Theme</a></li><li><a href=\"https://gutenbergtimes.com/feed/#13-strong-primer-getting-started-strong\">Primer &#8211; Getting Started</a></li><li><a href=\"https://gutenbergtimes.com/feed/#14-strong-vip-plugins-strong\">VIP Plugins</a></li><li><a href=\"https://gutenbergtimes.com/feed/#15-strong-contact-info-strong\">Contact Info</a></li></ul></div>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\">Transcript </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Welcome, welcome to the 35th Gutenberg Times Live Q and A. Sorry. My name is Birgit Pauli-Haack, and I&#8217;m your host tonight, or this morning, depending on where you are. Thank you all for watching. It&#8217;s great to have you all. And today&#8217;s show, we will discuss how companies and institutions can organize the WordPress sites around established design systems in general. And then how to do this with Figma and WordPress theme.json. The folks of WordPress VIP team build a plugin for the workflow and we will see a demo of it. And later we&#8217;ll also hear how Georgetown University works with the design system. And then we&#8217;ll answer all your questions as well as mine. It&#8217;s the little privilege that I have.</p>\n\n\n\n<p>So I&#8217;m thrilled to have these three experts on the show for you. It&#8217;s David Bowman, principal designer at WordPress VIP, and then we have Joni Halabi, senior developer at Georgetown University, and Alec Geatches, also JavaScript developer at WordPress VIP.</p>\n\n\n\n<p><em>Alec Geatches</em>: Hi.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hi, everybody. Glad you joined me here on this little show. We do proper introduction of course, in a minute. I have just a few housekeeping notes. The questions for those who are watching on YouTube, on the right hand side, you have a chat window, that&#8217;s where you can put your questions and also your comments. And then here on Zoom, we have the Q and A bubble on the bottom and the chat bubble to share your thoughts and questions. And please, please be kind, even if you disagree. This is a family friendly endeavor. And with that out of the way&#8230; I need to group&#8230; Yeah, so we&#8217;ll get into introductions. I have two questions for each of you. From where are you calling in today and what is your day job like? So David, do you want to start and then Alec and then Joni?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-strong-introductions-strong\">Introductions</h2>\n\n\n\n<p><em>David Bowman</em>: Sure. I&#8217;m calling in from northern Utah where I work from home here. And my day job, I&#8217;m a principal designer at WordPress VIP. That&#8217;s my background. I&#8217;m a graphic designer by trade, but have gotten into product design and web development via WordPress over the years. And now I work at WordPress VIP, focusing mostly on design systems and on how we can increase enterprises and big organizations to adopt Gutenberg and block theming, which I&#8217;m super stoked about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>David Bowman</em>: And I&#8217;ll pass&#8230; Should I pass to someone? I&#8217;ll pass to Joni.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Joni Halabi</em>: Oh, thanks. Hi everybody, my name is Joni Halabi. I&#8217;m calling in from the United States in the DC metro area. My day job, I am a senior web developer at Georgetown University, mostly working on WordPress customizations. And my specialty is custom block creation, so that is probably 80% of what I do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm. Excellent. And it&#8217;s up to you, Alec.</p>\n\n\n\n<p><em>Alec Geatches</em>: Hi, I&#8217;m Alec. I&#8217;m calling in from the States as well. I&#8217;m in Colorado. I work at WordPress VIP along with David, and I&#8217;m a developer. I&#8217;ve been a web developer for 10-plus years. Right now I&#8217;m working on a team that&#8217;s been focused on making the Gutenberg editor work better for enterprising companies. So that&#8217;s some of the stuff we&#8217;re talking about today, like design systems, how to integrate those with WordPress, editor curation, locking down the editor, things like that. And my team&#8217;s also done some work with decoupled slash headless WordPress as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Awesome. So cutting edge right there. Joni, and you also published on the developer blog about the difference between static blocks and dynamic blocks. And I think that was very helpful to a lot of developers who started out with Gutenberg development. Thank you so much for doing that.</p>\n\n\n\n<p><em>Joni Halabi</em>: Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And Dynamic Blocks will get a little bit more promotion with the interactivity API, but that&#8217;s a different show. But that&#8217;s coming with 6.4, not 6.3, 6.4. So let&#8217;s get into the show.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-strong-finding-and-working-with-design-systems-strong\">Finding and Working with Design Systems</h2>\n\n\n\n<p>For someone who&#8217;s a little bit not so in these big systems, what are design systems and how would you connect them? How do you find them and how do you work with them?</p>\n\n\n\n<p><em>Alec Geatches</em>: David was the first one to explain this to me, so I would defer to David.</p>\n\n\n\n<p><em>David Bowman</em>: I&#8217;ll try to be brief. I have a tendency to ramble and get lost in my thoughts when I&#8217;m talking about design systems, but the textbook definition that I give everybody is that a design system, the purpose of it, is in a classical sense to speed application development. So it makes it easier for designers and developers to work together to build some software application. And there are three parts to it. There&#8217;s code, there&#8217;s code. So it&#8217;s usually a set of reusable components and styles and things. Usually lives in a package that developers pull into their project. There is a UI kit. In our case at WordPress VIP, that&#8217;s a big Figma library, a bunch of Figma files with components and styles and things that mirrors what exists in code. And then there&#8217;s documentation to explain how everything works together. Because it&#8217;s inherently complex, a lot of it needs explaining. We do our best to just make it all smooth and seamless, but at the end of the day, a lot of stuff needs to be explained, so there&#8217;s always a documentation component.</p>\n\n\n\n<p>Those are the three bits. Classically meant for just speeding application development. I think what we&#8217;ll talk about today, and why I&#8217;m so excited about Gutenberg is that I think that Gutenberg adds content creators and page builders into the design system equation. So when you&#8217;re building a WordPress theme, you&#8217;re not really building a website. If you&#8217;re building a block theme, you&#8217;re building a tool that someone else is going to use to actually build the website. And so you have to include the content creator in the design system club, which I think Gutenberg blocks do pretty effectively. But yeah, that&#8217;s, I guess, how WordPress makes it a little different. That&#8217;s my answer. If you ask anyone, everyone has different opinions, but that&#8217;s mine.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Alec, Joni, do you have a different opinion? Do you want to add something to it?</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, so at Georgetown, we&#8217;re building our own system of websites. We support just about 400 websites on our WordPress systems, and they fall under one of two different themes. But we built this design system&#8230; It&#8217;s a homegrown system that is inspired by atomic design, but we&#8217;re not using those atomic terms. So we came up with our own terms. So we have foundational elements, and then we have those come together to make blocks and those will come together to make page templates and so on and so on. And one of our goals at Georgetown is to really lock down our design system to be super, super hyper specific to the university because we have some very strict visual identity guidelines. We strive to adhere to WCAG 2.1, AA standards for accessibility. And we have a whole host of just interactivity opinions that we want to at least try to enforce across all of our websites.</p>\n\n\n\n<p>So what we do on my team, I&#8217;m part of the web services team there, we are creating this system that&#8217;s going to be used by individuals across the university who are in charge of their own websites. And some of these people, they are pretty well versed in web technologies and some of them, they have day jobs, and this is something that they do on the side. And it&#8217;s part of that infamous, other duties as prescribed, sentence that we all see in our job descriptions. So we might have somebody working on their website for their office, and they don&#8217;t know HTML, so we&#8217;re trying to make things as easy as possible with our design systems.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-strong-figma-and-theme-json-strong\">Figma and Theme.json</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. But what you did on WordPress VIP was also to&#8230; You said the word Figma, which is a design system by itself where you can build them, and then you bridged it to&#8230; Because WordPress block themes have this theme.json, which is pretty much a machine readable code of design styles and settings pretty much. And how to get it from the Figma into a block theme or theme.json, so you can spin up new sites. Is that how I explained that right?</p>\n\n\n\n<p><em>David Bowman</em>: Pretty much, yeah. I think the way that, and I have a demo that I&#8217;ll show of exactly how this works, but the way that our design system workflow works, I think we&#8217;re similar to how you guys run, Joni, but at a much smaller scale, because we&#8217;re a company, but we only maintain really two marketing sites right now, some documentation sites, so it&#8217;s a much smaller footprint. But we know that there are organizations like Georgetown and like every other enterprise company out there that runs a significant web presence where they&#8217;ve got just a ton of stuff. There&#8217;s all sorts, and it&#8217;s all different. Everyone has their own special needs. And at the end of the day, something you said, Joni, that really struck me, was that at the end of the day, the people that are actually pulling the levers on the website might as well be bloggers.</p>\n\n\n\n<p>They&#8217;re not some developer. A lot of times they&#8217;re doing it and they don&#8217;t want to, because they don&#8217;t have a lot of time, and they just want it to be easy. And that&#8217;s actually why I think WordPress is most viable as an enterprise product. I think WordPress is perfect for this, because it&#8217;s designed for bloggers, it&#8217;s designed to be easy, and at the end of the day, everyone at work, that&#8217;s what they are. They&#8217;re not all a bunch of fancy web experts. And Gutenberg really provides a way for us to deliver that design system to them in a way that they can actually make use of it. And I guess the way that we do that, our flow is that our designers make stuff in Figma. We are designing our blocks, we&#8217;re designing our page layouts, we design, pick our colors, design all sorts of things.</p>\n\n\n\n<p>And then a large portion of that gets exported from Figma as something called design tokens, which is a fancy term in the design system world, and it&#8217;s a variable. You can basically think of it as a variable. If you want to be philosophical about it, it&#8217;s a design decision represented in a little piece of code, and it&#8217;s something like, &#8220;My brand color is red.&#8221; That&#8217;s how you would say it in words. And a bunch of those get exported from Figma to a code base in GitHub where we store our design system. And then that gets further exported from the design system down into theme.json in our WordPress applications. And the introduction of theme.json, is like, I can&#8217;t overstate how revolutionary that was for WordPress applications.</p>\n\n\n\n<p>I say all the time that Gutenberg is a design system, and it hasn&#8217;t realized it yet. It&#8217;s in its teenage years, it&#8217;s still coming of age and finding itself, and give it another five years and it&#8217;s going to realize what it is, it&#8217;s design system. And that theme.json file is the config for your design system and gives you a landing place for all of those design decisions that you&#8217;ve made. And because it&#8217;s all nice in code in a nice little json file, you can automate all that.</p>\n\n\n\n<p>And that&#8217;s my litmus test for whether something is a, quote, real design system or not, is that if at any point of the step from designer thinks of something, developer builds it, content creator uses it, anywhere along that chain, if you have to rely on a human API to make sure something works, like if someone has to copy paste something or refer to a style guide or copy stuff out of an inspect mode and Figma, then it&#8217;s not a real design system. If you want to be real hard-nosed about it. But the goal is all the robots do the work for you, but theme.json lets you do that.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah. If I can interject. To piggyback off of that. Theme.json was such a game changer for us, because&#8230; I alluded to this before, we really want to lock down our designs and out of the box WordPress, it gives you so many options in terms of color palettes and typography settings. I personally love that for a one-off site that is not affiliated with Georgetown. If I were to go and build a site, having that many options is great. Within the Georgetown universe, we don&#8217;t want that. We don&#8217;t want that. So being able to say, &#8220;I want to turn off custom palettes. I want to restrict the palettes to just our approved colors. I don&#8217;t want people to mess with the typography settings.&#8221; You get two choices for sizes. It has been absolutely wonderful. As soon as we saw that come into Core, we added it to our theme, and it was love, just love.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-strong-theme-json-or-classic-theme-strong\">Theme.json or Classic Theme</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Are you using theme.json on a classic theme, or are you moving into block themes as well? So gradually?</p>\n\n\n\n<p><em>Joni Halabi</em>: So we&#8217;re currently using it on a classic theme, and this is a much longer story and probably a different talk. I did an experiment to see how easy it was to convert that classic theme into a block theme and also incorporate our design system, which uses external twig templates into that block theme. And it was an amazing experiment and a very complicated experiment, and I just spoke about that at a conference last week. So if anybody&#8217;s interested, you can follow me. I&#8217;m sure the video will be up in a month or so.</p>\n\n\n\n<p><em>David Bowman</em>: Oh, I want to watch that video. Absolutely. I want to watch that video.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s a real journey whenever someone embarks on that task. That&#8217;s a real quest.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I will do a switch from my site from a classic theme to a block thing I haven&#8217;t migrated yet. Although I&#8217;m talking with people about block themes since 2020, the first time about it, but I still haven&#8217;t done the switch yet. But talking about videos, I think, David, you have a demo for us, and I think that&#8217;s now a good place to play that and to talk about it afterwards.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"5-strong-website-demo-strong\">Website Demo</h2>\n\n\n\n<p><em>David Bowman</em>: Awesome. I will play this demo and&#8230; Yeah, it&#8217;s a&#8230; Oh, hang on, I got to share my sound. Can&#8217;t forget that one. Yeah, let&#8217;s play. It&#8217;s pretty casual demo, but it gives you a little taste of how we&#8217;re using this stuff on our websites with our WordPress theme and how we use blocks. Let&#8217;s start from the beginning. Here we go.</p>\n\n\n\n<p>Hi, I wanted to give a quick demo to show you how we integrate Figma with our WordPress theme and how we use blocks as an extension of our design system. So here we are in Figma, and the foundation of our design system is our design tokens. And these mainly manifest in Figma as color and type styles, but we use a lot of other tokens in production for things like spacing, border radius. You use design tokens for all sorts of things. They have a lot of uses.</p>\n\n\n\n<p>So using a common token structure between our applications is a big part of how our design system works smoothly and has good interoperability. And this here, what we&#8217;re looking at is the file that manages all the color and type styles that we use across our designs. And to link all these things up to our tokens and ultimately to our WordPress theme, our tokens live in GitHub, we use this plugin here called Token Studio. And this is a community created plugin, and it provides two main things for us. It gives us a way to push design changes from Figma here to GitHub, and it also gives us a way to manage design tokens that Figma doesn&#8217;t support right now. And it lets us do that within our design tool where we&#8217;re working on these things, and that makes the code a lot more accessible to designers.</p>\n\n\n\n<p>So to demonstrate how all of this works, I&#8217;m going to show you how we can swap themes, and then I&#8217;ll show you what that looks like on the front end of an application and then what that looks like in the block editor. So we use themes and there&#8217;s a lot to this plugin. There&#8217;s videos, there&#8217;s documentation, there&#8217;s a lot going on here. There&#8217;s a lot going on here, but right now, this is the file that manages the styles for <a href=\"https://wpvip.com/\">wpvip.com</a>, and I&#8217;m going to go ahead and swap it for the token set for our other application Parse.ly, which you can see you swap it and it swaps out all the colors. So colors is the easiest place to see this change happening.</p>\n\n\n\n<p>So there you go. So we&#8217;ve effectively swapped everything for a different set of tokens. So if we were to publish this library, it would update all of our designs with new values. So you can see how that switching works. And likewise, if a designer were to make a change to one of these, say they want to make the background color something else, they could make that change here, and then go ahead and push it up to GitHub. And from there we go to our tool, to the Design Bridge tool to get the tokens from the standard format in which they&#8217;re stored out into our WordPress theme. So I will show you that next.</p>\n\n\n\n<p>So here we are. This is our design system repository that houses all of our tokens and then all the components of our design system for our React application, for our dashboard. So in terms of WordPress or WordPress applications, this just houses the tokens. Everything else in terms of components and things are the Gutenberg blocks. That&#8217;s all coming from WordPress Core, and then any custom block plugins that we&#8217;ve made. So what you&#8217;re looking at here, is this is how all of our design tokens are saved. So yeah, it&#8217;s a standard format. The W3C is working on a new web standard for design tokens, and this is what Token Studio outputs to GitHub. And you see that we&#8217;re able to alias between tokens. We have a core set that has all of our underlying color palettes and type scales and things, and we, from all those raw values, curate the values that are going to get used in our WordPress applications.</p>\n\n\n\n<p>So you can see here our body one short style are these attributes that then get applied as CSS in our WordPress application. So this is how they&#8217;re stored. And in order to get things from here into theme.json, where they can be applied to our blocks, into our global styles, we created a tool called the Design Bridge. So I&#8217;m going to go ahead and I&#8217;m going to run it. It doesn&#8217;t look like a whole lot, but I&#8217;ll show you what it does on the other side. So it runs in the command line right now. And we did that so that people can automate this, you can work it into an existing dev workflow to just make it more flexible. It could run as a GitHub action. You can do a lot to automate this process.</p>\n\n\n\n<p>But for right now, I&#8217;m going to do it manually. And all it does, is it takes two arguments. So it takes the token path, which is the path to where the tokens live, which is right here, what we&#8217;re looking at. And then it takes the path to the theme where it will look for a theme.json file, and then you pass it the value of a token theme. So these are things that Token Studio creates to tell it what token files to activate basically. And then you choose whether you want it to overwrite your existing theme.json file or not. And we&#8217;ll go ahead and hit enter. It will do its magic, and then it will tell you that it&#8217;s done. Say, &#8220;Hey, we did it.&#8221; So next we&#8217;ll pop over to pop to our WordPress application and see what that looks like.</p>\n\n\n\n<p>So here we are in our theme.json file, and what our tool does, is it outputs all of our design tokens as variables in the custom object in theme.json. So if you&#8217;ve done any amount of theme.json work and working with global styles, you&#8217;ll know there&#8217;s this little custom object that sits inside of the settings object in theme.json. And this is just a blank thing that you can put whatever you want in. And everything that you put in here will be exposed to CSS variables along with any global styles that you are adding. So this has just been reformatted and output here into theme.json. And the format&#8217;s very similar. It&#8217;s not exactly the standard format, but it is pretty close. But it does go ahead and output the design system, essentially.</p>\n\n\n\n<p>And so what this does is it exposes it in a predictable way in the DOM as CSS variables that are named according to the standard way that Gutenberg names all of its CSS variables. And that means that you can reference them in block development and you can point all of your blocks and all the work you&#8217;re doing to style your theme. You can point it at a constant set of variables that can be swapped out exactly the same way that we swapped out the styles and Figma, like I just showed you, you can do the same thing on a WordPress application.</p>\n\n\n\n<p>Yeah, so I&#8217;ll show you what that looks like now. All right. So here we are. This is Parse.ly. This is the website for our content analytics product at WordPress VIP. And this is one of the two web applications right now that we have running on our theme that is set up to integrate with our tool here. And as you can see, it looks all green and looks branded appropriately. And I&#8217;m going to go ahead and swap the tokens and you can see what happens when it does that. So I&#8217;m going to go ahead and run our sync and do it. And there you go. You can see what happens is it changes, you see font styles, you see colors changing. It&#8217;s not a huge change, because we haven&#8217;t designed it to be very divergent between the brands, but you do see the front end styles get swapped out and it works pretty well and makes it pretty easy to manage a multi-brand system of WordPress applications. And so next, let&#8217;s look at what this looks like in the block editor.</p>\n\n\n\n<p>Okay, so now we&#8217;re in a local dev site here, and this for me is really where the magic and the value of this really happens. So this is a sample page and we&#8217;ve got this set up with our styles. We&#8217;ve got this set up to be pulling from the global styles we&#8217;ve defined, all the block styles we&#8217;ve defined. You can see in here we&#8217;ve got our pallets defined for this particular brand, Parse.ly, and these are coming from theme.json. And so if we go ahead and run the same sync&#8230; I&#8217;m going to run the sync and then refresh the page here. You can see what happens if I swap the theme from Parse.ly back to WPVIP. And looks like that sink is done. I&#8217;m going to refresh. And you see everything changed. Everything goes gold. You get the brand colors from VIP. And this stuff is achievable with CSS. You can swap out CSS styles, you can point at a different style sheet.</p>\n\n\n\n<p>But I think what makes the integration in theme.json super valuable is that you get all of your block options are updated as well, because all of these are also coming from theme.json. So not only are you getting front end style updates, but you&#8217;re getting updates in interactivity in the backend, which is great. That&#8217;s really what you want to be able to make a good user experience and to be able to manage multiple user experiences and have it all get integrated easily with your design tooling. So yeah, there you go. That&#8217;s the high level, a lot of detail to talk about, but this is the quick rundown of what the tool can do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Excellent.</p>\n\n\n\n<p><em>David Bowman</em>: There you go.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much for the demo. It&#8217;s kind of whose head is spinning, but I really love that flow from the designers work here, and then you can just write some script or run some scripts and then you have it all in the theme already. Does it also work backwards, or is it only one direction?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"6-strong-bidirectional-strong\">Bidirectional</h2>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s bidirectional. What it does is it sets up&#8230; Our GitHub repo, our design system repo is the actual source of truth. And so that means that a developer can use an IDE to edit that code file and save it. Or a designer can use Figma to edit that same file and save it and its version controlled with Git and they can both pull down each other&#8217;s changes and it brings designers into an actual dev workflow on a design system. At least for the tokens. Just for the tokens.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Just for the tokens, yeah. We don&#8217;t have any questions from the audience right now, but Joni, do you have any questions? Or David and Alec?</p>\n\n\n\n<p><em>Joni Halabi</em>: I don&#8217;t know where to start.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Are you muted or&#8230; No.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"7-strong-opinions-using-word-press-strong\">Opinions using WordPress</h2>\n\n\n\n<p><em>Joni Halabi</em>: I was at a loss for words. It was a very cool demo. I&#8217;m very excited by that switch where both the front end and the block options change, because that&#8217;s something that could&#8230; So at Georgetown we have two different themes and they look pretty different. They&#8217;re similar in terms of colors, but not exactly the same, slightly different fonts, slightly different colors. And to be able to have the ability to switch between the two&#8230; Because we have a lot of sites who are wanting one theme over the other.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>David Bowman</em>: I mean I have questions for you. I am extremely curious about&#8230; Because like I said, everyone does this their own way. Every organization that I know that has a design system&#8230; I think there&#8217;s a reason that every big company out there has made their own. Google made one, Amazon made one, Salesforce. They all make their own because they all do it differently. And so I guess, is WordPress your primary user facing surface that you&#8217;re maintaining or do you have other stuff? Do you have React applications or is it pretty much just WordPress sites?</p>\n\n\n\n<p><em>Joni Halabi</em>: For our team, it&#8217;s pretty much just WordPress sites. The history of our team, we&#8217;ve actually worked with a number of CMSs. I think this might be our fourth or fifth overall, but WordPress is our primary UI just because it&#8217;s a very easy UI, especially for those content editors who don&#8217;t have a ton of experience, it&#8217;s easy for them to pick up. And I feel like it&#8217;s gotten easier. I&#8217;m hoping it&#8217;s gotten easier since the classic editor. But yeah, I mean in the future, one of the big reasons why we created our own design system, we call it our pattern library, and the reason why that pattern library is external is in the future, if we do have some external application that we want to hook into or we have a piece of software like an LMS or something that will let us customize the front end, we can say, &#8220;Hey, you can go grab this twig file and there&#8217;s your custom header, or here&#8217;s your custom footer, or here is the color palette that we want this to use.&#8221;</p>\n\n\n\n<p>We wanted something that was a little bit more universal and not necessarily in WordPress. So we built this pattern library. Actually my colleague was the one who really architected the entire thing. It&#8217;s built-in kss-node and it&#8217;s really slick. We can take those styles and take those twig files and import them into our WordPress build, but we also have a front end interface for this pattern library that includes documentation and different variations on patterns and such so that somebody who just wants to see all of these different foundational elements or what a block looks like, they can do that with a front end that isn&#8217;t necessarily associated with our WordPress installation.</p>\n\n\n\n<p><em>David Bowman</em>: That&#8217;s super interesting, because it sounds like you guys are doing the part of the integration that has terrified me up until now. I think design tokens are&#8230; Well, not easy, but it&#8217;s easier. They&#8217;re just little variables. They&#8217;re little bits of data that you can pass back and forth, and it&#8217;s a mapping exercise to get it to go to the right place. But when it comes to actually having&#8230; Like if you look at another design system, there&#8217;s their tokens, and then they have their components and all of those components, when we started working on design system integration stuff, I went under the assumption that the WordPress Core blocks are your component library. That if you&#8217;re integrating with WordPress, you get a component library and you should think of it as another framework that you support.</p>\n\n\n\n<p>So Google material supports React and View, and if your design system supports library A also supports Gutenberg. And Gutenberg is very opinionated about what blocks it has and how you use them. And so I took all that for just for granted. I was like, &#8220;Cool, we&#8217;re going to assume core blocks and go from there and then build some custom stuff.&#8221; But it sounds like you&#8217;ve gotten much further than that. You have this whole&#8230; You got a whole thing run in to put all the core blocks together. Are you using Core blocks? What are you&#8230; I guess, tell me more about this.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"8-strong-using-core-blocks-strong\">Using Core Blocks</h2>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, so that, that&#8217;s actually the core part of my job. So we are using Core blocks because it was very important for us to be able to maintain that basic, basic blocks, so header list, paragraph image, things like that. But we&#8217;ve also taken away access of some of the blocks that we don&#8217;t necessarily want our content editors using. So a lot of the full site editing focused blocks, so like page title query. I&#8217;ve said this before, we like lock things down. So we&#8217;ve locked those down. And to replace those blocks, we&#8217;ve actually created a number of custom blocks.</p>\n\n\n\n<p>So our custom blocks will give our content editors the ability to grab posts by category, which, yes, there&#8217;s a core block for that, but we also really, really wanted control over the markup for that scenario. We have a bunch of blocks that will allow you to have an image and text next to each other or video and text next to each other. And again, for us, it&#8217;s a control issue. We really want control over that markup. So all of the blocks that I&#8217;ve written to be custom for installation, they are dynamic blocks. And the beauty of the dynamic block is it makes it really, really easy to hook those dynamic blocks. We just take the render function in PHP, we hook that via timber to our twig files from the external pattern library. So we have one block we call premo with image.</p>\n\n\n\n<p>So it&#8217;s an image next to some text and maybe a call to action link. And what I&#8217;m doing in that render function is I&#8217;m just taking all of that information, the image object information, the text, the link, and I&#8217;m sending it as an array, just an array of parameters to my twig file in the pattern library. And the pattern library does the rest on the front end. So it means if we ever want to switch out the front end, if we discover, &#8220;Hey, we have an accessibility bug. Our CTA link isn&#8217;t really accessible, we need to change the Aria label on it, or we need to change the color contrast on this button,&#8221; we can do that within the pattern library. And WordPress is unaffected by it, so we don&#8217;t have to worry about things like deprecation errors. We don&#8217;t have to worry about having people go in and update their page to a new version of the block or anything like that. It just automatically happens as we make those changes to our pattern library.</p>\n\n\n\n<p><em>David Bowman</em>: That sounds awesome. I have so many questions, but I&#8217;m talking a lot. Alec, do you have any thoughts?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"9-strong-patterns-strong\">Patterns</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Before you get to your questions, I have a small clarification, when you talk about patterns, you are not talking about WordPress patterns, or are you?</p>\n\n\n\n<p><em>Joni Halabi</em>: I am not. No, sorry, I am talking about design patterns. We&#8217;re still struggling with terminology because pattern is a very loaded word. It could be WordPress patterns, it could be design patterns. Block is another big one that we struggle with because there&#8217;s WordPress blocks, but then there&#8217;s also blocks of information and blocks of HTML. And so thank you for&#8230;</p>\n\n\n\n<p><em>David Bowman</em>: Even theme means like 10 things in different contexts.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. When you talk about Figma themes, it&#8217;s like, &#8220;Oh yeah, those are totally different than WordPress themes.&#8221;</p>\n\n\n\n<p><em>David Bowman</em>: Everyone&#8217;s got a theme. There&#8217;s a lot. You got to really keep your theme straight.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"10-strong-links-and-syncs-strong\">Links and Syncs</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So we got one question, and thank you Alec, for answering that, from Bridget Vessel. Is that the best place to get the links? And she linked to a page on WordPress VIP, and then Alec had added two additional links there. And I will put those also in the show notes after the show.</p>\n\n\n\n<p><em>Alec Geatches</em>: Okay, yeah, I can talk about that a little bit if that&#8217;s okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, please do.</p>\n\n\n\n<p><em>Alec Geatches</em>: So when we first designed this with David, we wanted to be able to&#8230; If you watched what David was doing, have no idea what happened or you just want to try it yourself, we have this long readme, or it&#8217;s in our design system bridge repository, but it&#8217;s a whole walkthrough. We have a little tiny material UI, basic design system, Figma document. You can clone that. You can see how the Figma tokens plugin that David was using, connects to it and how the token sync. And then you can use our tool to pull down those tokens and sync it up with a theme.json and then you can like, &#8220;Oh look, the color changed as I made a change in Figma, synced it, now it&#8217;s in WordPress,&#8221; and see how all of those links work together. The secret sauce in that is that custom section in theme.json. So that&#8217;s where you can dump all of your CSS variables, mostly colors, typography, things like that, units, and then you can just re-reference those in other parts of your theme.json.</p>\n\n\n\n<p>So like your palette, you can say, &#8220;Give me the primary color.&#8221; And then in Figma, you can change your primary color. It gets synced to the same spot. Then your block pulls in a different primary color for its options. It&#8217;s all magical, but it&#8217;s really based off of that custom section. And what the design system bridge does, is it reads all that json, puts it in a format that&#8217;s comfortable for CSS and for WordPress using Style Dictionary, which is this Amazon product. It&#8217;s basically used for design tokens for this exact purpose or similar, where you have some design constructs, you want to put them in a different format. So we have some transforms in there. It&#8217;s like add some pixel units here. It&#8217;s really basic stuff. For the most part, we take that json, modify it a bit, put it right in the theme.json custom list, and from there it just works. Anyways, check out the tutorial I linked. We can put that in the show notes for a walkthrough, it&#8217;s really simple. You might not learn a lot from it, but it can at least show you the full end-to-end process.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you.</p>\n\n\n\n<p><em>David Bowman</em>: As soon as you implement it, as soon as you use it a couple of times, it feels really good. Changing something in Figma and then watching it update in WordPress theme. It&#8217;s pretty cool.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"11-strong-changing-design-practices-how-to-start-strong\">Changing Design Practices &#8211; How to Start</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I can imagine how that&#8230; Amazing. So we get from an attendee, we have a developer who&#8217;s deep in the Gutenberg ecosystem and he has a question about how would you go about inspiring hesitant designers to a) embrace things like the site editor style book, and b) adapt their existing, if applicable, design systems like Figma, XD and whatever those two become post-acquisition, to work more in what Gutenberg already provides. I&#8217;m struggling to achieve internal buy-in to change design practices, even though I have full internal buy-in from ownership for Gutenberg and block-based theming. That&#8217;s the loaded question, right? The million dollar question. So, thank you for that question. That&#8217;s a really good one. Yeah. Who wants to take it on first? You all work with developers.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s a good question.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So how do you embrace things like site editor style book?</p>\n\n\n\n<p><em>David Bowman</em>: I guess I would, maybe this isn&#8217;t an answer to the question, I&#8217;ve been talking a lot again, but I&#8217;ll just say this quickly. As a designer who went on this journey who was like, &#8220;I got to use Gutenberg, let&#8217;s figure it out,&#8221; and having to go through that process, a couple of things were really helpful to me. The first one was to maybe as a non-starter for some people, but just get into block theme development. Block theme development is not hard. And I think that one of the best things about block themes is that the code of a WordPress theme includes very little PHP now, it includes very little JavaScript by default. And if you want to start doing things like getting custom styles and really doing things, it&#8217;s pretty simple. And the meat of their block theme development, so much of it is happening in json files and block markup files that are HTML, that it&#8217;s very accessible.</p>\n\n\n\n<p>And so if you&#8217;re a designer that is wanting to understand Gutenberg, just go build a block theme. Go really get in there and try and figure it out, because doing that, you&#8217;ll see that there are a lot of places where you can really integrate it with what you already have. So theme.json, getting tokens out of Figma and into theme.json is&#8230; Just that is a really big step. And that&#8217;s the other piece of advice I would give is to just focus on small things. Just because Gutenberg is so opinionated and truly has not realized that it&#8217;s a design system yet.</p>\n\n\n\n<p>There&#8217;s a lot of the dynamic blocks, static blocks, there&#8217;s a lot, there&#8217;s a lot of pitfalls, but if you can focus on the small things, like getting global styles hooked up to your existing design styles, you&#8217;ll get a long way. At least that was my experience, is that just doing those things, I was like, &#8220;Oh, cool, I can actually really craft this experience in the editor and I can craft the front end and I can influence it as a designer without having to go bug a developer to make a PR for me.&#8221; Often I can just go and change it. I can go change my Figma files and that was pretty rad. That was longer than I wanted it to be, but that was my answer.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, I would definitely echo that. But I think it almost feels like there is a social aspect to this question as well. And I would want to dig deeper into why the designers are hesitant about getting their hands in there. It almost seems like, are they feeling overwhelmed? Are they feeling like they don&#8217;t have the technical chops for it? I would start to have those conversations with the designers and maybe developers and designers can get into a room, virtual or physical, however you all work, and just see where that pain point is. Sometimes I know personally when I feel like oh my goodness, something is really difficult, something is just mentally blocking me from starting that task, it might be easier to talk it out or to have somebody hold my hand, at least for the first couple of steps, and maybe that will give them the inspiration to just jump in.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"12-strong-create-block-theme-strong\">Create Block Theme</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And yeah, I understand that not everybody who gets into a car knows how to drive it. You need somebody to show it to you. Or another metaphor is if books would help or documentation would help, there wouldn&#8217;t be universities attached to libraries. So what I shared in the chat window was two links. One is to a course on learn.WordPress. That is develop your first low-code block theme. So to get a scaffolding and use the tools that are in the site editor, and they have been really expanding and they will be with 6.3. I don&#8217;t know if you are watching here and you want to see what&#8217;s coming, 6.3, there was a product walkthrough last night and it will be published on news on WordPress. And then the other link that I shared is just a tag of other courses on how to use the site editor.</p>\n\n\n\n<p>I think it really helps to know how a content creator is going to use the site editor as well to help with the design and what would be needed. Of course, that&#8217;s the beginning. So the theme team, WordPress theme team, also developed a plugin. It&#8217;s called Create block theme plugin, which also lets you then create style variation, create patterns, as well as export the theme from the site so you can upload it to another site. That&#8217;s helping with the workflow of block themes development. And I&#8217;m sure I&#8217;m going to get the link when I&#8217;m doing it live and talking. That&#8217;s never a good thing.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s easy to search for. Create block theme.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Create block theme.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s a good one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and it has its active development and the designers that are actually creating themes for the repository, they&#8217;re start out with that plugin and then do some modifications later on if they needed to. But it&#8217;s very good to create some.</p>\n\n\n\n<p><em>David Bowman</em>: I would add maybe one little note to the create block theme thing, which is that&#8230; So the site editor and tools like create block theme, it&#8217;s rapidly getting so much better to the point that their goal is to have the site editor be a design tool so that you can sit down and craft a theme and be able to use it like a design tool. And it&#8217;s going to get there and it&#8217;s getting there pretty quickly. But I would, maybe this is a spicy hot take for me, is that I would not think of WordPress as a no-code solution. There are definitely, if you need that and you want to use WordPress, there&#8217;s options for you. But as just a designer being like, &#8220;Hey, I want to make a website. I need a no-code solution to make a website,&#8221; there&#8217;s stuff out there that&#8217;s really good that&#8217;s not WordPress.</p>\n\n\n\n<p>And I think you give up a lot when you go with those, but you do get no-code. But what WordPress has, that some of these other things don&#8217;t, is that the code that you need to make a WordPress theme, it&#8217;s really easy, and it might not be fully, “no-code,” but it is very accessible code. And if you have ever, ever, ever made a website ever, like in college, ever, if you&#8217;ve ever done it, you can figure out how to do a block theme. And in addition to really digging into the site editor, go read the docs on theme.json. If you go read the docs on theme.json, you&#8217;ll be like, &#8220;Oh, it&#8217;s just a json file.&#8221; And you can go and find yourself developing, quote, block themes before you know it. And that&#8217;s pretty rad.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I like that analogy. There was this idea that block development raises the bar for entry. Because with the JavaScript and the React and the build tool and all that, the theme.json, got us back to the tinkering kind. We want to, &#8220;Oh, I want to make this border bigger, or I want to make that color more red. And I go into the theme.json and I just change it and boom, it&#8217;s done.&#8221; So it really is a good way to get your hands dirty again, with a little bit of code. We got some more information from our developer and they said, &#8220;Thank you all. I&#8217;m not certain my design colleagues will feel comfortable diving into WordPress themselves based on our experience together. I myself am very comfortable with coding block themes, SCSS under the hood and such, and how once I&#8217;m done, we set up the theme.json, that the process is largely no-code. It&#8217;s a whole new world.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"13-strong-primer-getting-started-strong\">Primer &#8211; Getting Started</h2>\n\n\n\n<p>As a more overarching question for David and all, Figma or otherwise, what would be a good primer to share with my designers who I think are intimidated by development&#8217;s expectations. Now that I&#8217;m working exclusively in Gutenberg, I&#8217;m suspicious that there isn&#8217;t a robust design system in place on their end. And the question I ask when it comes to populating my theme.json are challenging their current practices. Is there a good getting started with web design systems resource you would recommend to them? And I give it back to David or Alec or Joni?</p>\n\n\n\n<p><em>David Bowman</em>: That&#8217;s a good question and I&#8217;ll tell you what resources I used when I was doing this, because I think a lot of, “web designers,” nowadays you learn&#8230; If you&#8217;re as old as me and learn to doing stuff in Photoshop and you&#8217;re used to&#8230; Design systems is a relatively new thing. And it is made designing things for the web more technical, but it&#8217;s also made it a lot more efficient and you hand off to devs easier. There&#8217;s a lot of benefits to it. And the way that I got into design systems was by honestly mostly by checking out existing design systems. And the big guys like IBM Carbon was very influential for me. Google material is ubiquitous in our lives. If you go check out the documentation sites for these big design systems, they really lay it out very nicely, because they&#8217;ve got whole teams supporting them.</p>\n\n\n\n<p>And so they&#8217;re like, &#8220;Here, this is our design system. Here&#8217;s our Figma files that you use. Here&#8217;s this.&#8221; They&#8217;re all open source and you can download and play with them and build stuff with them. That can be a lot. If you&#8217;re really interested in getting into design systems, that&#8217;s a great place to start. If it&#8217;s too much, honestly Figma. If you&#8217;re not already using Figma, you should probably be using Figma. And Figma, with their latest releases at their config conference just a few weeks ago, introduced variables into Figma. They introduced modes into Figma. And so they now natively support some really fundamental design system concepts and have a bunch of really great little tutorial files that you can go play with, and this is how it works. You change from light mode to dark mode. And it&#8217;s mirroring how it&#8217;s going to work in code and point them at those. If they&#8217;re not Figma people then tell them to get into Figma. Hopefully Adobe XD just dies a slow death and they just, which I think is their plan.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yeah, I&#8217;d also say searching Figma templates or just the word design systems or the words you can find a whole bunch, everything from these huge ones with 10 pages of buttons and things to just a little baby one that&#8217;s just a color palette and then you can take one and change it up. And that&#8217;s how I learned about them and got a hands-on knowledge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Joni, do you have any input?</p>\n\n\n\n<p><em>Joni Halabi</em>: I was just going to say, I&#8217;m a developer. Everything I suggest is going to be code, so you probably don&#8217;t want to take a suggestion from me, but Figma looks amazing.</p>\n\n\n\n<p><em>David Bowman</em>: Figma&#8217;s great.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"14-strong-vip-plugins-strong\">VIP Plugins</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. So I&#8217;m really glad that we all got together today. We&#8217;re leading up on the hour. I have two questions for you. I know VIP is also working on two other plugins. Do you want to talk about it Alec, briefly, so we can wet the&#8230;</p>\n\n\n\n<p><em>Alec Geatches</em>: The first one still internal beta, so I don&#8217;t have a good link for it, but it&#8217;s super relevant to what we&#8217;ve been talking about, what Joni was talking about. Just locking things down. David posted here. Let me find that link real quick. I had that ready. A great issue in the Gutenberg repository last year and it was talking about theme.json. It&#8217;s great for design systems, but it loses the scope of these higher level design system things like if you embed this block in a hero, how does it look different now? Usually that&#8217;s part of a design system. These typography options are available here but not here. And theme.json just has a flat block structure. Every block has these settings when you design them that way in theme.json. Where was I going with this?</p>\n\n\n\n<p>We&#8217;re working on a plug in that is looking to extend Gutenberg and the way that David is talking about, but also have a very allow list approach to everything which blocks you have, which roles get access to them, which block settings you have, things like that. So we want to make this super enterprise focused, because Gutenberg gives you the ability to just do crazy things. Even if you lock it down to a design system, you still get a lot of options for a lot of things and it&#8217;s very hard to get those all out if you&#8217;re running 40 websites for other people. So we&#8217;re working on a plugin that…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Or 400.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yeah, yeah. Or 4,000 or yeah. WordPress goes crazy. So yeah, we&#8217;ll have more information when that becomes public or when we talk about it more. But anyways, we&#8217;ve been heads deep in this trying to work with Gutenberg to allow these enterprise things, because Gutenberg is meant to be customizable. We don&#8217;t want to be customizable at all, want everyone&#8217;s job to be easy and not have that many typography options. And so the other plugin that we&#8217;re working on…</p>\n\n\n\n<p>Yeah, just have good options and not that many of them. And the other thing that we worked on, this is released now, it&#8217;s called the block data API. This is a headless or decoupled thing, but there&#8217;s this issue with the way that post work in Gutenberg that make it tricky to use sometimes in like a node. If you have a node front end and you want to consume that, pretty much for a post, if you use the rest API, you just get a big blob of HTML. And it&#8217;s got class names in it and sometimes it&#8217;s got styling in it and there&#8217;s not a lot you can do with it other than just put it on the page and try to supply enough styles so that it looks decent.</p>\n\n\n\n<p>But it can be hard to map onto custom components and things. There are ways to do it, but it&#8217;s pretty tricky. So we added this block data API. If you just search that in Google, you&#8217;ll find it. Check it out, look at the first GIF. It explains how it works, but it&#8217;s just we read through the HTML, parse it into json, and then pass that back. So you just get a bunch of json that you can map onto your own custom components instead of just having to rely on HTML string somewhere. So that&#8217;s pretty cool. We just released it for the first time this year. We&#8217;ve got one customer who will be launching it soon. I don&#8217;t think I can say any more specific on either part of that, but pretty cool.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s going to be big.</p>\n\n\n\n<p><em>Alec Geatches</em>: I&#8217;m excited about that.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s going to be cool.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yep. Anyway, so those are the two main things our team&#8217;s been working on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, so there are quite a few enterprise companies who actually use WordPress as a content creation tool, but not on the front end, because they need other data match up with things. So yeah, the headless is the way that they go via the rest API. So that block data API is probably going to be embraced by quite a few agencies as well and not just the clients of VIP.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yeah, hopefully.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"15-strong-contact-info-strong\">Contact Info</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, we do. So we have three minutes to go. If the viewers want to get in touch with you, what&#8217;s a good place to reach you? Joni? Or do you have anything else that you couldn&#8217;t talk about but you want everybody to know?</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, if folks want to reach me, you can find my contact info on my website. It&#8217;s <a href=\"https://jhalabi.com/\">jhalabi.com</a>. I&#8217;m also @jonihalabi on most socials.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Thank you. Alec and David?</p>\n\n\n\n<p><em>Alec Geatches</em>: David, go for it.</p>\n\n\n\n<p><em>David Bowman</em>: Alec.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re too nice.</p>\n\n\n\n<p><em>Alec Geatches</em>: I&#8217;m going to be quiet.</p>\n\n\n\n<p><em>David Bowman</em>: So find me on LinkedIn if you want to talk WordPress stuff. That&#8217;s probably the best place to find me to talk about WordPress things. I&#8217;m also social media. You find me at hanging out in the Gutenberg GitHub repository sometimes. And yeah, I also, I blog with my family at <a href=\"https://americanfieldtrip.com/\">americanfieldtrip.com</a> about, totally not related to WordPress, but you can find me there. It&#8217;s mostly about national parks and travel stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, wonderful.</p>\n\n\n\n<p><em>David Bowman</em>: But yeah, that&#8217;s how you find me. There&#8217;s a few different ways if you really want to track me down.</p>\n\n\n\n<p><em>Alec Geatches</em>: I&#8217;ve searched my name, Alec Geatches. I think I&#8217;m the only one so far. So you&#8217;ll find me there. You can email me at <a href=\"mailto:alecg@automatic.com\">alecg@automattic.com</a>.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Well thank you so much, and I think we are right at the hour. Very punctual. Yeah, it&#8217;s a German show. Well, thank you, all three of you, for spending the time with me and explaining all this good design systems and how you work with WordPress. I learned a lot about it, and I&#8217;m sure the viewers learned a lot too. Thank you so much for coming and I hope you have a wonderful weekend. It&#8217;s Friday night, or Friday morning, depending on where you are. Thanks everybody, and goodbye.</p>\n\n\n\n<p><em>David Bowman</em>: Thanks, everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And we got a thank you from our anonymous developer. We use CD and with a pending acquisition of Figma by Adobe, I&#8217;m cautiously giddy and design system distraught. So here&#8217;s hoping. All right. That&#8217;s a good way to end it. Thank you all so much.</p>\n\n\n\n<p><em>David Bowman</em>: Take the plunge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You take care, and I&#8217;ll end it here.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 15:55:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Akismet: OpenAPI specification for Akismet now available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=174137\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://akismet.com/blog/openapi-specification-for-akismet-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1163:\"<p>We have just released our first <a href=\"https://www.openapis.org/\">OpenAPI</a> specification for Akismet, which is hosted on Github:</p>\n\n\n\n<p><a href=\"https://github.com/Automattic/akismet-api\">https://github.com/Automattic/akismet-api</a></p>\n\n\n\n<p><a href=\"https://github.com/Automattic/akismet-api/blob/trunk/spec.yml\">The file</a> describes <a href=\"https://akismet.com/developers/\">our API</a> and each of its endpoints, including what parameters they accept and what the response looks like.</p>\n\n\n\n<p>You can import the spec to explore the API using tools like <a href=\"https://swagger.io/tools/swaggerhub/\">SwaggerHub</a> and <a href=\"https://www.postman.com/\">Postman</a>. You can also use it to automatically generate code for the Akismet API in your chosen programming language using <a href=\"https://openapi-generator.tech/\">OpenAPI Generator</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">We&#8217;re here to help</h3>\n\n\n\n<p>If you need help using our OpenAPI spec, or have any questions about our <a href=\"https://akismet.com/developers/\">API endpoints</a>, please don’t hesitate to&nbsp;<a href=\"https://akismet.com/contact/\">get in touch</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:31:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Chris Rosser ?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WordPress.org blog: Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15686\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4086:\"<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup class=\"fn\"><a href=\"https://wordpress.org/news/feed/#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"https://wordpress.org/news/feed/#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" />︎</a></li></ol></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: #86 – Dan Walmsley on How WordPress Can Adapt to the Reality of AI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=147378\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/podcast/86-dan-walmsley-on-how-wordpress-can-adapt-to-the-reality-of-ai\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60788:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case how AI works and how it might integrate with WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>Before we begin, just a quick alert that there will not be a podcast next week. It&#8217;s summer here and I&#8217;m having a few days away, but we&#8217;ll be back the week after that.</p>\n\n\n\n<p>So on the podcast today we have Dan Walmsley. Dan is a long time user of WordPress, having started using it even before version one was released. With a passion for experimenting with different publishing technologies, Dan eventually discovered WordPress and he&#8217;s been using it ever since.</p>\n\n\n\n<p>Currently working at Automattic as a code Wrangler, dan is part of the applied AI team. Although the team is relatively new, with only a few members, their mission is to coordinate and guide the various AI initiatives within the company.</p>\n\n\n\n<p>Recently he&#8217;s been focusing on automating internal workflows and communications. A particularly crucial aspect, given the distributed work set up which spans 70 countries, and multiple time zones.</p>\n\n\n\n<p>We start the conversation talking about Dan&#8217;s background. He&#8217;s recently decided that AI is a truly transformational technology, and so has taken steps to learn the skills needed to understand and implement it.</p>\n\n\n\n<p>Dan talks about how Large Language Models work, and how ChatGPT has driven awareness and demand for AI technologies in a way that was almost impossible to predict just a year ago. This has caused many companies to become deeply interested in AI and what it can do for their business workflows.</p>\n\n\n\n<p>We get into whether the reality of AI can live up to the hype. Do we have enough understanding of AI to know what its impact will be on the workplace, or are we just in the middle of a media frenzy, which will die down over time?</p>\n\n\n\n<p>Dan challenges, the notion that AI will take many of our jobs and emphasizes the economic value that AI can bring.</p>\n\n\n\n<p>We move on to explore the differences between site generators and site builders, and Dan introduces the concept of the copilot era, in which website creation can be somewhat automated. He highlights tools like Jetpack AI, which can generate content and modify the tone of voice right inside of WordPress.</p>\n\n\n\n<p>Dan stresses the importance of building AI tools with user interfaces that learn from human inputs in order to improve over time. He thinks that companies, which measure user responses and interactions will gain a significant advantage in AI development. While those who fail to improve that AI content generation will be left behind.</p>\n\n\n\n<p>Whether you&#8217;re new to AI or have been paying attention for awhile, this podcast offers a fascinating insight into its impact on society and how it can accelerate progress in fields like scientific research.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where find all the episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Dan Walmsley.</p>\n\n\n\n<p>I am joined on the podcast today by Dan Walmsley. Hello, Dan.</p>\n\n\n\n<p>[00:04:35] <strong>Dan Walmsley:</strong> Hello Nathan. Great to be here.</p>\n\n\n\n<p>[00:04:37] <strong>Nathan Wrigley:</strong> Yeah. Thank you for joining us. Dan, I wonder if you wouldn&#8217;t mind spending just a very quick moment or two just introducing yourself. Obviously, this is a WordPress podcast. I suspect that today we might stray out of the boundaries of the WordPress ecosystem a little bit. I have a feeling with our preamble talk that we&#8217;ve had, that may well happen. Nevertheless, given that it is a WordPress podcast, can you just tell us a little bit about your background, the work that you do, who you work for, that kind of thing.</p>\n\n\n\n<p>[00:05:01] <strong>Dan Walmsley:</strong> Yes. So I have been using WordPress since before version one, or whenever the first version came out. Because I remember back at the time I was playing around a lot with Movable Type and, oh gosh, I can&#8217;t even remember the name of all the different things. I&#8217;d gone through quite a few different publishing platforms, just experimenting with the web. And I discovered WordPress and I&#8217;ve literally still got that same blog, and it&#8217;s still on WordPress, and it&#8217;s been upgraded through every different version ever since.</p>\n\n\n\n<p>I work at Automattic. I am on the Applied AI team. I am a Code Wrangler, or code mangler. We all give ourselves our own titles and mine changes a bit. My colleague calls himself an applied AI artisan. And we&#8217; re a pretty new team. We&#8217;ve been around just a couple of months. And we&#8217;re very small, as in right now it&#8217;s just me and a couple of data scientists. But we have a lot of AI at Automattic. Our team&#8217;s job is to sort of try to coalesce, coordinate, guide, align it. So that we&#8217;re not just operating at the leaf nodes, that there&#8217;s a bit of larger thinking going into things.</p>\n\n\n\n<p>And as such, my days are mostly spent building weird prototypes on LangChain and chatbots. The most interesting thing I&#8217;ve looked at recently is automating some of our internal workflows and communications. Because we operate async, we&#8217;re remote. We&#8217;re in 70 odd countries around the world in different time zones. And so using AI to capture people&#8217;s knowledge and repeat it later when they&#8217;re asleep is pretty useful.</p>\n\n\n\n<p>[00:06:25] <strong>Nathan Wrigley:</strong> When the word Automattic is announced, I usually think of WordPress, but I think I&#8217;m right in saying that Automattic is the parent of quite a few different companies. So the connection between WordPress, the open source project, download from .org, may not be quite so obvious. But the implementation, it may well go into some of the SaaS offerings that you&#8217;ve got I&#8217;m guessing as well.</p>\n\n\n\n<p>[00:06:48] <strong>Dan Walmsley:</strong> Yeah, so we are trying to build out AI infrastructure that really doesn&#8217;t have a direct dependency on WordPress. You know, GPUs are GPUs, and we&#8217;re running a Python based stack on those, because that&#8217;s where a lot of the open source activity is. You might have seen that OpenAI announced some changes to their APIs, and in just a few hours, LangChain had a new release, incorporating those features.</p>\n\n\n\n<p>Good luck even finding that in TypeScript, let alone PHP, right? So if you want to move fast, you want to be on the cutting edge, got to stand up a bunch of Python. I&#8217;ve built a version of LangChain in PHP that runs on WordPress.com for the purposes of producing knowledge bases from blogs. It&#8217;s possible that if it turns out to be useful and reliable, that we&#8217;ll open source some of that. But right now it&#8217;s just there to provide some quick indexing for chat interfaces.</p>\n\n\n\n<p>[00:07:34] <strong>Nathan Wrigley:</strong> So your team is fairly new. Give us an idea of how old that word new means. Are we going back two years or 18 months or a couple of months?</p>\n\n\n\n<p>[00:07:43] <strong>Dan Walmsley:</strong> Two months maybe?</p>\n\n\n\n<p>[00:07:44] <strong>Nathan Wrigley:</strong> Really, new. Okay. And did that sort of trickle down from the Automattic leadership? Was it that people up there decided that, okay, now we&#8217;ve got OpenAI in the space, everybody&#8217;s, I mean, literally everybody seems to be talking about it.</p>\n\n\n\n<p>I don&#8217;t think I&#8217;ve picked up a newspaper, certainly an online newspaper, in the recent past without there being some kind of AI story in there. So was it that, or was it more a groundswell of Automatticians saying, look, if we&#8217;re going to stay in the game, we need to be moving with this.</p>\n\n\n\n<p>[00:08:11] <strong>Dan Walmsley:</strong> There&#8217;s some people who have been pushing on LLMs and transformer technology since pre GPT three or two. Which includes me. When I had my sabbatical a couple of years ago. So Automattic has a three month sabbatical, and I was like I&#8217;m going to learn AI. This seems really cool.</p>\n\n\n\n<p>So I did Andrew Ng&#8217;s Deep Learning course and a couple of other ones. There&#8217;s some really great courses out there now, even better ones now, this was about three years ago. And I just thought, oh my god, if this grows up, which it looks like it&#8217;s going to, it could be amazing for generating content. It could be amazing for conversational interfaces.</p>\n\n\n\n<p>I had a little Roomba running around my house, pretending to be a psychopathic robot with chainsaw arms, when in fact it was a little plastic Roomba. But it was like vaguely self-aware that it didn&#8217;t have chainsaws for arms. And so it would be like, when I get my chainsaws back on, you&#8217;re a toast buddy.</p>\n\n\n\n<p>I had an Australian robot that trundled around, it would try to get you to stop working and go to the beach. But it had no way of getting to the beach, which is hilarious. Anyway, that&#8217;s a long way of saying, some of us have been pushing for this stuff for a while, but I think what changed, obviously ChatGPT came out and created a lot of public awareness and public demand and conversation.</p>\n\n\n\n<p>People started to see this as a race. Companies started to see this, I don&#8217;t think Automattic necessarily falls in this bucket, but a lot of companies started to see this as existential. Either you have an AI plan or you&#8217;re dead. And so it made sense to put together a team that&#8217;s sort of looking at what is this for the whole organization.</p>\n\n\n\n<p>Because like you said, it&#8217;s a complicated organization. We&#8217;ve got podcasting apps, we&#8217;ve got diary apps. We&#8217;ve got Woo. We&#8217;ve got Day One and all these different things. Sensei is a learning management platform. And so we really needed to figure out how we could scale these efforts up, and not end up duplicating things or having tons of different approaches where it&#8217;s hard to get economies of scale, or build knowledge or build capability.</p>\n\n\n\n<p>[00:09:53] <strong>Nathan Wrigley:</strong> Now, given that the rate of change seems to be so incredibly fast. Give us an idea over those last two months, how much knowledge you&#8217;ve had to ingest. And I don&#8217;t necessarily mean knowledge, but how has it been, trying to keep up over those last couple of months?</p>\n\n\n\n<p>Is it genuinely as fast moving as it appears from the outside to be? What you learned last month probably doesn&#8217;t apply this month. And so therefore staring into the future, and if I asked you the slightly banal question, what will we be doing with AI in two years time? Is there really any realistic chance that you can offer us an answer to that?</p>\n\n\n\n<p>[00:10:27] <strong>Dan Walmsley:</strong> Well in terms of keeping up with it, there really is no way to keep up with everything. And I mean, there&#8217;s multiple different dimensions here, right? There&#8217;s the research dimension, what papers are coming out and how practical are those papers. And where are the outcomes of those papers showing up in libraries?</p>\n\n\n\n<p>And then there&#8217;s like, where is it showing up in products? What are our competitors doing, or what products might we plug into our own stack? For example, we can use GPT4 to generate help responses, but we have to sort of, stand up maybe a vector database and some other infrastructure, various job management things.</p>\n\n\n\n<p>There&#8217;s other third party services where you can point them at some public documentation and they figure all that stuff out for you, and just give you one endpoint that just chats with you. And it&#8217;s oh, well how much do we embrace this plus that? A lot of the day to day involves build versus buy versus don&#8217;t bother.</p>\n\n\n\n<p>And it&#8217;s really hard because our team currently has not that many full-time developers on it, and we do want to move really fast and understand these technologies and do the judicious integration. I personally in my horrifyingly long career have done lots of integrations and they&#8217;re almost always bad news.</p>\n\n\n\n<p>And I&#8217;m almost always fighting to do some minimal thing like in-house, rather than integrate. But it&#8217;s a constant. That&#8217;s really the battle. It&#8217;s like less so the awareness of what&#8217;s happening and more so wrestling with the idea of like, how do we incorporate this or not?</p>\n\n\n\n<p>And people wondering if something&#8217;s strategic or aligned or whatever. And there&#8217;s all these different time horizons you&#8217;re looking at. Like, are you talking about today? In a week, in two weeks, in a month, in a year? Because they&#8217;re all different answers.</p>\n\n\n\n<p>[00:11:57] <strong>Nathan Wrigley:</strong> Yeah, I feel like if I was to to you about AI two years ago, I genuinely think the conversation about what we would be doing in 2023, 2024, I honestly don&#8217;t think we could have got any kind of line of sight into what happened. Even maybe a year ago. Nobody would&#8217;ve thought that mainstream media, mainstream products, would be using AI. And like you said, falling over each other to have some kind of policy on AI. So I don&#8217;t quite know how conversation will go.</p>\n\n\n\n<p>But it feels as if we&#8217;re in the infancy of this still, and it does feel if we are going propel ourselves through this at an exponentially faster rate. The thing that just popped into my head was that when humanity first came up with the motor car, it was, at least in the UK, you had to have somebody walking with a flag in front of the motor car. And most people probably looked at it and thought, that&#8217;s ridiculous. I could walk there just as quickly as I could get into that vehicle and be driven there because it&#8217;s going so slowly.</p>\n\n\n\n<p>Give it 10 years, got a little bit faster. Give it another 10 years, it got faster and more beautiful and more efficient. But of course it then polluted the world, which brings us onto the inherent problems that we may have with AI. There&#8217;s a lot of concern about unexpected consequences. The fact that it hallucinates. The fact that it may give information out which is inaccurate. Given that this is your work, are you fairly sanguine that things built with AI are broadly speaking safe? Or are we just working out what the guardrails even are?</p>\n\n\n\n<p>[00:13:25] <strong>Dan Walmsley:</strong> Well there&#8217;s a few pieces to that question, and I keep failing to address all the pieces of your question, so I&#8217;ll try to genuinely do it this time. But, the first piece is sort of like where we&#8217;re at in this AI timeline, and you talked about various analogies.</p>\n\n\n\n<p>I think of this as the BBS era. If you&#8217;re in your forties, you know what a BBS is. If you&#8217;re not, it was when people used to connect to a single computer using a modem, and the modems were slow enough that you could see the text appearing on the screen. Sometimes slower than you could read. Certainly when I started using BBSs, it was slower than you could read, and even slower for images.</p>\n\n\n\n<p>And obviously subsequent to that we got the internet, through various stages. And now, you look at a BBS and it&#8217;s unrecognizable. It&#8217;s like why would you ever look up information this way when you can look at the whole internet? I think we&#8217;re going to go through the same thing with AI.</p>\n\n\n\n<p>There was another part to your questions which was the danger piece. There are alignment techniques that we use today on large language models and other kinds of models, that are fairly reliable at the scales at which those models operate, or at least useful.</p>\n\n\n\n<p>And the worst things that those models can do are not yet super terrible. if you&#8217;ve got one plugin that talks to your bank and another plugin that can pick up the phone, then a rogue AI can hallucinate its way into destroying your life, no problem.</p>\n\n\n\n<p>I sometimes talk about this with, we&#8217;ve experimented with building ChatGPT plugins for different products, including wordpress.com. And one of the hardest things is, you have to put user confirmation stuff everywhere because you simply can&#8217;t predict when the AI&#8217;s going to start invoking your API in backwards ways, and just deleting all your posts because it thought that&#8217;s what you wanted to do. Turning every post synopsis into the word red paper clip.</p>\n\n\n\n<p>There&#8217;s a broader alignment thing that I think goes way beyond that. It goes way beyond these hallucinations. Because you know, I think people get caught up with, oh well it&#8217;s not that useful because of the size of the context window. It&#8217;s not that useful because it hallucinates. So it&#8217;s not that useful because it was last updated in September, 2021. As if all of those aren&#8217;t things that are going to change immediately, right?</p>\n\n\n\n<p>Those are all solvable problems. We know we can make larger context windows. We know we can update it more often. We know we can inject additional information. We know that various alignment techniques can encourage it to reason more thoughtfully and activate pathways that have more expertise, and that will continue to be the case. And as the models get larger, those pathways with expertise will have more expertise. And so it&#8217;s obvious and predictable, those things.</p>\n\n\n\n<p>So the really hard thing to predict is where does this interface with society? And you know, we touched briefly on jobs and other things. Or whether, obviously people talk about rogue states getting an unhinged intelligence to go do crazy scientific research for them, or invent a nuclear weapon or a chemical weapon.</p>\n\n\n\n<p>Google Brain just invented protein folding. So get this, the Google Brain team, Google Deep Mind, they invented a protein folding system that can fold a protein in a few seconds, which is the equivalent of about at least four years of PhD time. And so in that single invention, they eradicated, I suppose you could say, or avoided over a million years of PhD time. By folding all those proteins instantly.</p>\n\n\n\n<p>The thing I think we&#8217;re not ready for is that rate of progress. I call it Moore&#8217;s Law for everything. Where you have a self-reinforcing centralized paradigm, where you have AIs that, by their very progress, make it easier to build the next AIs.</p>\n\n\n\n<p>And then at the same time you have this fanning out into different disciplines, where those newer AIs are also making it easier to make scientific progress. You could use, for example a score like Perplexity, feed in all of the papers in the world and find the most useful research questions to ask that have not been answered, by basically large scale language based statistics.</p>\n\n\n\n<p>[00:17:03] <strong>Nathan Wrigley:</strong> I think this is the piece where my knowledge breaks down because my interaction with AI has largely been ChatGPT. Certainly the most recent versions of ChatGPT. Plus also the image creation tools. And, I&#8217;m amazed by how quickly I&#8217;ve become, unimpressed is the wrong word, but how quickly I just expect it to give me something akin to a human.</p>\n\n\n\n<p>The first couple of times I used ChatGPT my entire endeavor was to see what it would produce, and be utterly, utterly flabbergasted by the fact that it could in any way give me something coherent back. And the same with the image creation tools, Stable Diffusion and a few others that I&#8217;ve tried. Typing in some kind of prompt, and then just jaw droppingly quickly, something half decent comes back. And you know you try a little bit harder and you tweak the input that you&#8217;re putting in and something slightly better comes back.</p>\n\n\n\n<p>I&#8217;m kind of amazed by how quickly that became uninteresting and just normal. In the same way that when I was a child, I first got on the bike and suddenly I could ride a bike and wow, this was amazing. Two weeks later you have to basically pay me to get on the bike at that point, it&#8217;d lost its interest.</p>\n\n\n\n<p>But I&#8217;m wondering if that interface, because it is replicating a human in many ways, you know, the ability to do art and the ability to give us answers, whether it&#8217;s hallucinating or not. I wonder if that&#8217;s something that we all think that&#8217;s the way the AI&#8217;s going to go. But the examples that you gave just then, like medical research and probably research in all sorts of scientific domains, if that&#8217;s something which just never quite gets out into the public.</p>\n\n\n\n<p>So the fear that a lot of people have, and there are some parts of that that I share, is never counterbalanced by the, but listen we&#8217;ve just done thousands and thousands of hours of PhD equivalent work in a matter of moments. Look how fantastic this is. I don&#8217;t think that message gets out very often.</p>\n\n\n\n<p>[00:18:56] <strong>Dan Walmsley:</strong> Well, you know, and without launching into a critique of the media, I think we can all recognize that dramatic headlines sell. And I&#8217;m sure if the headlines of these articles were slightly hard to predict whether AI will be good or bad, stay tuned. Then they wouldn&#8217;t sell so many newspapers.</p>\n\n\n\n<p>You know, I don&#8217;t think anybody can actually, at a large scale, predict the outcome of the current AI revolution. That there are people who think that it will be a nothing burger. And there are people who think that it will more likely than not, result in the eradication of the human species. And there are people who think it&#8217;ll be cyborgs. And there are people who think it&#8217;ll be utopia. They&#8217;re all neither right nor wrong, yet.</p>\n\n\n\n<p>I will say though, that people narrowly pushing, AI will take all the jobs line, definitely wrong in my opinion. Part of that we really alluded to this before the show, but part of that is, humans are really good at inventing new jobs. We added like 8 billion humans to the planet in the last a hundred or so years, and we gave them all jobs, no problem. We can invent new jobs like dog tickler and it&#8217;s fine.</p>\n\n\n\n<p>People will just find ways to keep themselves busy. And if AIs come and take away a huge amount of jobs, particularly those jobs that are mostly typing and mostly repetitive, like similar things over and over again, then maybe those people get a chance to like move their bodies and stand up.</p>\n\n\n\n<p>We forget how incredibly dysfunctional it is to sit there and type all day. If we can just take away all the typing. I have a gym membership because my body&#8217;s falling to pieces because I have to sit there and move my fingers and unblinkingly for like seven hours a day. It&#8217;s ridiculous. It&#8217;s torture. Can AI make that go away? That&#8217;d be amazing. What a revolution.</p>\n\n\n\n<p>And so we sort of think about this in terms of jobs as if there&#8217;s some fixed number of jobs and the AI&#8217;s going to take them. And then there&#8217;s going to be no jobs to replace them. We don&#8217;t really think about it holistically, in this sense of if it&#8217;s doing all that work it&#8217;s producing huge economic value and unlocking human potential.</p>\n\n\n\n<p>[00:20:48] <strong>Nathan Wrigley:</strong> One of the things that really has sort of crept up is the use of the word intelligence. So we&#8217;ve got AI, artificial intelligence. I&#8217;m not entirely sure that, at the moment, is really the right word to be deploying, because that is a fairly scary word.</p>\n\n\n\n<p>You&#8217;ve seen films going back half a century or more where some kind of intelligent cyborg, something created by a human being at least, Frankenstein onwards, is able to outthink humans and therefore wreak havoc and so on and so forth. But my understanding is that the implementations that we are broadly using, ChatGPT and so on and so forth, are based on these large language models.</p>\n\n\n\n<p>It would be interesting to get into the weeds of that if you&#8217;re willing. Can you explain how that technology works and why perhaps it&#8217;s more of a fluke that it gets anything right? Well, that&#8217;s not true. It&#8217;s not really intelligent in the sense that you or I would subscribe to a human, but it appears, it masquerades as intelligent.</p>\n\n\n\n<p>[00:21:48] <strong>Dan Walmsley:</strong> Right. That&#8217;s very true. So, I&#8217;ll try to make this brief but accessible to people who might not have heard this explained before. There was a paper came out, I think it was around 2017, might have been earlier from Google, called Attention is All You Need. And that was the paper that described an architecture called transformers. Where you could feed in a sequence of text that they would turn into these tokens representing, not quite a character, not quite a word, but a numeric string of stuff representing the text.</p>\n\n\n\n<p>And then it would be able to predict the next word with a pretty high degree of accuracy, based on paying selective attention to the previous words. So we all know that words like and, or, or not, aren&#8217;t always salient but then there&#8217;s other words that are sort of really important to the text.</p>\n\n\n\n<p>It gets really good at picking up genre and tone and language. It&#8217;s important to note that ChatGPT was never trained to speak English. It was Hindi or anything else. It was just fed huge amounts of text, and they hide a piece of the text and say, can you guess what that is? And if you do that enough times with this selective attention model, then you end up with a system that is very good at continuing text where you left off.</p>\n\n\n\n<p>Now this by itself is what they call a foundation model. It&#8217;s not that useful. The only thing that really does well is generate plausible sounding text. So if you start something that looks like a scientific paper, it will continue. If you start something that looks like a poem, it will continue.</p>\n\n\n\n<p>So, once you have that foundation model, it&#8217;s not very useful for chat. It will go off the rails. Because it turns out, as soon as a transformer introduces one mistake into its output. Let&#8217;s just say it&#8217;s producing an output and it changes somebody&#8217;s name from Bob to Bill. It will continue to refer to them as Bill, even if it knows in its heart of hearts the correct answer is Bob, because all it&#8217;s trying to do is be as plausible as possible. Ah, I said Bill, I better stick with Bill. Or I said, up is down, I better continue with up is down.</p>\n\n\n\n<p>I did about eight years of improv. It&#8217;s like an improviser in that respect. And in fact, that was one of the first things I used it for was generating scripts and improv things. Little musicals and stuff. Because it can take an absurd premise and run with it. So you give it an absurd premise like bogans in space, that&#8217;s a very Australian reference. It will generate the most plausible script it can for bogans in space. And that&#8217;s wonderful if what you&#8217;re doing is trying to create sort of a fantasy thing, but it&#8217;s less wonderful if you&#8217;re trying to do something grounded.</p>\n\n\n\n<p>And so then they go through these various alignment processes where they feed it a huge amount of handwritten, curated, expert questions and answers on top of that whole internet that they fed it in the first place. And these are supposed to be illustrative of, I&#8217;ve got a question, I need a step by step answer that is clear and concise. And I also need it to refuse to tell me how to make a chemical weapon and other things like that.</p>\n\n\n\n<p>So there&#8217;s some safety stuff there where you look at examples of people asking for malicious things. It&#8217;s crazy. I asked it to tell me a joke the other day, an Irishman, Englishman, American joke, right? And so ChatGPT refused to generate it. Because well, I can&#8217;t make a joke about people based on specific aspects of their race or whatever. Which is sort of like, fair enough in the general case but also weird in the context of me just wanting that joke for myself to see what it could do. That&#8217;s the kind of alignment stuff that they&#8217;ve put in.</p>\n\n\n\n<p>And so finally what you get at the end of the day after a few more steps, is a model that has a little background thing where developers can align the model. Has all these different safety mechanisms. Has the ability to spell out instructions step by step,. Avoids as much as it can certain mistakes that would lead to it repeating itself or hallucinating too much. And has the ability to recognize now and use tools that accept JSON structured input as part of its cognition. That&#8217;s the latest level of alignment that they&#8217;ve introduced. And in the future there&#8217;ll be more and more as it gets bigger and more capable.</p>\n\n\n\n<p>[00:25:31] <strong>Nathan Wrigley:</strong> So the fact that we&#8217;re on GPT4 at the moment, we&#8217;re recording this in June 2023. We&#8217;re on GPT4, and prior to that there was GPT3. And I think everybody can agree that each iteration is better. But the way that the technology is structured at the moment, will each version in the large language model, the token version that you described, the transformer model, will that simply get better at creating fewer and fewer mistakes?</p>\n\n\n\n<p>Or are we approaching something which we could point to and say okay that now really is intelligent? In other words, are we heading towards a general intelligence? An AGI where we can now no longer disassociate it from being a human. It can come up with its own incentives, its own reasons to do things and then figure things out all by itself, based upon no human input whatsoever?</p>\n\n\n\n<p>[00:26:18] <strong>Dan Walmsley:</strong> Yes. When I think of an AGI, I think of an autonomous AGI, right? Where it&#8217;s HAL 9000. I don&#8217;t really know when that will happen. And I don&#8217;t know if it&#8217;s a great idea necessarily. I think in between here and there, there&#8217;s like a huge amount of work to be done to bring this technology to life in ways that help people with their work.</p>\n\n\n\n<p>It&#8217;s one thing to switch tabs and go to ChatGPT and type, write me a program that does x or y. It&#8217;s another thing to have GitHub Copilot living in the editor, which is an absolute game changer. And I suspect what&#8217;s coming next is AIs that work with your programmers and produce pull requests, or patches on pull requests, that fix linting or reduce complexity.</p>\n\n\n\n<p>For example, I would pay at least $10,000 a month for an AI that comes in and reduces the complexity of the code that our teams write every single day. Finds methods that shouldn&#8217;t be there. Renames things to more align with each other. Move stuff between classes, and documents things publicly. Maybe pings developers if it&#8217;s not sure something&#8217;s useful anymore. Can you just imagine? Because not only is that cleaning up the code, it&#8217;s reducing the number of developers you want, it&#8217;s removing one of the most annoying things about being a developer.</p>\n\n\n\n<p>So it&#8217;s making your job as a developer more pleasant. It&#8217;s not like it&#8217;s inventing new stuff, but it&#8217;s making it so much easier to invent new stuff because you&#8217;re working on super clean, minimal code that only does what you need it to do. And now just imagine if every company had that, how much progress we would see.</p>\n\n\n\n<p>[00:27:46] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s interesting isn&#8217;t it because at the hub of that is, it almost feels like if you paid that $10,000, a large proportion of your team have to go away. Because probably a significant proportion of the team is people going in and cleaning things up and what have you.</p>\n\n\n\n<p>[00:27:59] <strong>Dan Walmsley:</strong> Does it work that way though? Because let&#8217;s just imagine that somebody is on my team. Unless your company is losing money, right? Large amounts of money, and you&#8217;re desperately looking for some way to cut, right? If you have a programmer on your team and you can give them this tool and they become four times as productive. Then why would you want fewer programmers? Every programmer you add is four new programmers.</p>\n\n\n\n<p>I don&#8217;t think this is going to result in people being fired en masse. People look around at Silicon Valley right now, there&#8217;s a lot of companies copying the Elon Musk strategy of, oh boy we just realized that we need to trim the fat. Over the long term, I don&#8217;t know if that necessarily means fewer programmers. Although I do think more people will get to be a programmer.</p>\n\n\n\n<p>My dream is that every human being has their own open source stack that is completely proprietary to them. That is built and managed by an AI that is completely personal to them. Runs on a device that they own and control.</p>\n\n\n\n<p>And so then you can simply describe how you want your life to be, and your personal software stack adapts and makes sure that I only see the information that is valuable and actionable to me. And because of this AIs role in my life, I&#8217;m able to get insights about what&#8217;s really working, and avoid distractions and nobody will ever be able to spam me again.</p>\n\n\n\n<p>I actually literally am building an AI that scrapes the bajillion inscrutable emails from the school and plucks out the things that actually need to go in my calendar. It&#8217;s easy now, right? It&#8217;s 50 lines of code. And I can do the same thing for other digital parts of my life and just make that whole thing go away.</p>\n\n\n\n<p>[00:29:29] <strong>Nathan Wrigley:</strong> Yeah, I think there&#8217;s three places to sit on this seesaw. There&#8217;s either I&#8217;m terrified by AI, or I&#8217;m really pro AI, or I think where I&#8217;m finding myself at the minute is more in the middle. There are parts of it that I can see which clearly have enormous utility, and are really going to put us on a rocket ship to Mars if you like.</p>\n\n\n\n<p>There&#8217;s just no downside, but I think there is a part of me which does genuinely worry about the incentives. Whether or not it&#8217;s a great idea to automate all the things. Whether the landscape is just going to become flooded by noise, which actual humans can&#8217;t go through. So we then have to employ more AI to figure out how to get rid of the fake content. I&#8217;m not a hundred percent sold on it. I can certainly see there&#8217;s bits of it which have benefits.</p>\n\n\n\n<p>However, I&#8217;ve just come back from WordCamp Europe and part of the final address, we had Matt, Josepha and Matias on stage. And Matt is clearly very, very bullish about AI. In the same way that five years ago he was telling everybody to learn JavaScript deeply. I think the lasting message I got certainly from that presentation was start using AI deeply. Obviously you&#8217;re an Automattician, what he says matters. I&#8217;m just wondering, just to bring it back to WordPress, I&#8217;m wondering where we are going to begin to see AI in our WordPress sites? What are the kind of places where we may see it surfacing in the future?</p>\n\n\n\n<p>[00:30:51] <strong>Dan Walmsley:</strong> Yeah, I&#8217;m going to start with the quote from Matt, learn AI deeply. We don&#8217;t really know where AI is going to go but we see a certain rate of progress. And it&#8217;s faster than Moore&#8217;s Law. And so if you use an imperfect AI tool today and you get familiar with it and fluent with it, let&#8217;s just say GitHub Copilot. You can be pretty sure that tool will accelerate in progress over time. Because it&#8217;s already an AI tool that&#8217;s like standing on the shoulders of this like industry. So it&#8217;s going to get faster, it&#8217;s going to get better.</p>\n\n\n\n<p>The people who don&#8217;t embrace AI are going to continue on their linear or plateau trajectory. And so I feel like any human being alive today should probably start embracing some piece of AI in their life so that they can get a sense for how it&#8217;s shifting and changing and improving. So if it&#8217;s just a matter of using ChatGPT to like make plugin snippets, oh it&#8217;s good at this, it&#8217;s not good at that. Make it a habit. Then you&#8217;ll bear witness to what&#8217;s going on and you&#8217;ll know where to jump both feet into the stream and start leveraging this stuff more at scale.</p>\n\n\n\n<p>In terms of where we&#8217;re going to see it show up in WordPress. I was on a panel recently and one of the things that I said was, a question worth asking is what content management system would an AI choose? If you&#8217;re an AI and you&#8217;ve been asked to create a website for someone and you haven&#8217;t been told what technology to use, would you use WordPress?</p>\n\n\n\n<p>And the answer today is, probably. Because most of the public documentation for content management systems is WordPress documentation. So the AI has access to like 20 years of all this stuff. And that&#8217;s really, really powerful. It means it can reason about WordPress in a really impressive way.</p>\n\n\n\n<p>It&#8217;s actually a great testimony to keeping WordPress roughly the same all of that time with minimal breaking changes. Because, you know, one of the things that I&#8217;ve noticed is there are lots of breaking changes between libraries in the Python ecosystem. And that means that ChatGPT very rarely writes working Python code for me. I have to modify it to use the latest API or whatever. It almost always produces working PHP WordPress code, because what works hasn&#8217;t changed, which is quite amazing.</p>\n\n\n\n<p>[00:32:58] <strong>Nathan Wrigley:</strong> I mean, that is actually phenomenal to see that happen.</p>\n\n\n\n<p>[00:33:01] <strong>Dan Walmsley:</strong> Yeah. Now we have to capitalize on that, but that&#8217;s a really great start. And you know what CMS would an AI choose, okay it&#8217;s one that it&#8217;s familiar with. And then the next level is, well it would be one where you can modify it and extend it easily. WordPress certainly checks that box to infinity, right? There&#8217;s all of these existing plugins and an AI can read the documentation of plugins and choose one for you or whatever it needs to do.</p>\n\n\n\n<p>So the plugin mechanism is amazing because you can basically take a statement that someone makes about how they want their website to be different, and turn it into a function that runs a bunch of hooks.</p>\n\n\n\n<p>It doesn&#8217;t have to go modifying the existing code of WordPress and forking it. It can just like inject the things that you ask it for, and correlate them back to the statements that you made. And in the future if it finds out that there was a better way to implement that request then it can implement it differently. Because it has the original things you asked for. So that&#8217;s one way I think I see AI helping with WordPress over time. Not that that&#8217;s a product that I&#8217;ve built I&#8217;m just sort of reasoning broadly about it.</p>\n\n\n\n<p>[00:33:59] <strong>Nathan Wrigley:</strong> I think one of the areas that I really would like to see is the ability to leverage what&#8217;s just come around. I&#8217;m really excited about blocks and block patterns in particular. I&#8217;m quite a visual person, so I love to see images of what I&#8217;m about to get. And the idea of, I don&#8217;t know, I want to build a website for a local industry. A real estate agent, a lawyer or something like that. And the AI has some kind of interpretation of what that means. It probably has a little understanding of the geography of where I live and what kind of imagery might go into a website like that.</p>\n\n\n\n<p>I live on the coast and there is some things which people always take pictures of and they often end up on websites for the places where I live. But also it understands typically what a lawyer is, you know? And it would understand that, okay, you probably need a page that has this on it, and a page that needs this on it, and probably a form and blah, blah, blah.</p>\n\n\n\n<p>And then it would just throw at me, I don&#8217;t know 100, 200 designs, something like that, that I can look at. And because of the fact that it&#8217;s all built with blocks I could input that pattern, and then start to tweak things as I like it. I just love the idea of the choice that it might be able to give me, and short circuit, I mean me building 200 different designs, that&#8217;s going to take me weeks. This potentially could happen in the blink of an eye and I love that choice.</p>\n\n\n\n<p>[00:35:13] <strong>Dan Walmsley:</strong> Yeah. Think about a few years ago, if you had like a site generator versus a site builder, right? So let&#8217;s just say I generated a site and we&#8217;ve all be familiar with site generators, you give it like, what kind of color scheme you want and what kind of industry you&#8217;re in and kind of thing.</p>\n\n\n\n<p>And this has been possible for 10 or 20 years that you can generate a site. But the problem is, okay, now you&#8217;ve generated a site and then you make some content and you&#8217;re like, ah, I want to change that one decision. Well you can either regenerate it from scratch and blows away everything you&#8217;ve done. Or you can try and manually make the change, but you have no idea how to do that because you didn&#8217;t build it in the first place. And then you&#8217;re going to learn the whole system.</p>\n\n\n\n<p>That sort of like magic trick of generating the site back in the day is the thing you can only do once. But in the copilot era, which I think Microsoft correctly identified this paradigm. You can jump in and out of automating the site creation experience as much as you want. And so the idea is, okay, I&#8217;m going to generate the content on this page. Jetpack AI block is actually really, really good at this. I&#8217;m not here to like boost our products too much. But it&#8217;s like a really good example.</p>\n\n\n\n<p>You can generate a page and then you can just change the tone of voice. And it will go and take the same content and change the tone of voice, non-destructively, you know what I mean?</p>\n\n\n\n<p>And so the AI is able to work with whatever changes you&#8217;ve already made and make some more. I think that that&#8217;s going to be the paradigm for a long time. And anybody building AI tools needs to be very careful about building the UI in such a way that it takes these hints from the human. And uses them to make the AI better over time. Better at getting the first guess right.</p>\n\n\n\n<p>And any company that does that is going to have an AI flywheel. And any company that just generates content directly but doesn&#8217;t measure how the users respond to it or interact with it or change it over time is going to be stuck on a plateau, with no way to get to the next level.</p>\n\n\n\n<p>[00:37:04] <strong>Nathan Wrigley:</strong> I really find the whole idea of that curious. Literally you could go to bed one night, wake up in the morning and the AI has decided that we&#8217;ve gathered lots of data and well you had a real blitz of users during the course of the night and it&#8217;s really shown us that no, they don&#8217;t like this bit, so we&#8217;ve changed it entirely on your behalf. So it&#8217;s like split testing but on steroids.</p>\n\n\n\n<p>That seems like a really interesting idea. Obviously people will not wish to hand some aspects of that over but if you can prove that a WooCommerce sale, for example, this configuration of a checkout system seems to be 20 times more popular than this one. Okay, we&#8217;re going to get rid of that one. Now we&#8217;re going to start working our way through whether we can improve this one. All of that seems to be a bit of a no-brainer.</p>\n\n\n\n<p>[00:37:47] <strong>Dan Walmsley:</strong> Yes. Building an awareness of when humans need to make discriminating decisions, and when you can make them on their behalf. And the product design aspects of what expectations do you set about what&#8217;s going to happen, or whether it&#8217;s reversible, or whether it requires confirmation or authentication or et cetera, et cetera. Taking a backup.</p>\n\n\n\n<p>That&#8217;s all stuff that you don&#8217;t get for free with AI. That&#8217;s all the infrastructure of actually making it useful. And I will say the AI itself is dead simple to use, right? it&#8217;s conceptually unbelievably easy. 99.99% of the work is just like aligning the whole rest of the system around it so that you can make sure that customers have a good experience.</p>\n\n\n\n<p>The normal stuff of building products, right? Setting expectations, all these different things. It feels different because watching a generative AI talk like a person is weird, but it&#8217;s not, it&#8217;s not work that requires you go do a deep learning course.</p>\n\n\n\n<p>The thing that is transformative about this is it&#8217;s generality. These techniques have existed for years. We&#8217;ve always been able to classify, well, not always, for a long time been able to classify images for a long time been able to sort of grammatically parse out text or detect languages or sentiment or other things.</p>\n\n\n\n<p>But they were all specialized models with vast data sets. And now you can fine tune it on 500 of your own examples and have it go answering entire support requests straight out of your knowledge base. And so it&#8217;s that generality that is really powerful.</p>\n\n\n\n<p>[00:39:13] <strong>Nathan Wrigley:</strong> I&#8217;m curious to see what the UI for all of these different things are going to be in the future. In the sense that, you know, if you look at WordPress from when you began using it, it&#8217;s a very different animal. Although it hasn&#8217;t changed dramatically in the last five or six years. When you began using it, it was a different animal to the way it looks now.</p>\n\n\n\n<p>And then these sort of page builder technologies came along and further democratized publishing and made things easy and it was a point click interface. I&#8217;m just curious to see how, what the pieces are that live inside WordPress. Whether it&#8217;s going to be text input. Whether we&#8217;re just going to start talking to our website and, you know, move it left a bit, a little bit more, make it red. Not that red, the other red.</p>\n\n\n\n<p>I want a picture of a, I don&#8217;t know, a sausage over there, that kind of thing. How all this gets surfaced. We&#8217;re obviously in the era of trying to get everybody to use Gutenberg. Whether it fits into there or whether we need a brand new interface because the AI will just take care of everything. That bit is for me going to be really interesting.</p>\n\n\n\n<p>[00:40:06] <strong>Dan Walmsley:</strong> Yeah. I&#8217;m really excited to see what happens with Gutenberg. I&#8217;m completely convinced Gutenberg will not go away. And actually AI makes Gutenberg look like a better and better decision versus the classic editor as AI comes into view.</p>\n\n\n\n<p>[00:40:21] <strong>Nathan Wrigley:</strong> Can you develop on that? I think I know what you mean but I want to hear what you mean. Yeah.</p>\n\n\n\n<p>[00:40:25] <strong>Dan Walmsley:</strong> So having things embedded as blocks with parameters provides a much more semantically rich interface than just a bunch of HTML. It&#8217;s similar as to how we see markdown used a lot more in AI than HTML as a formatting language, input, output. And why is that?</p>\n\n\n\n<p>Well, it&#8217;s because the structure tells you something about the meaning of the document, right? This is a table, this is an image, this is a whatever. Obviously you get an HTML but more sophisticated than that, right? This allows the AI, so say you&#8217;ve got like a cover block with an image and a text. This allows the AI to have some confidence about how that&#8217;s going to appear when it shows up on a webpage.</p>\n\n\n\n<p>As opposed to arbitrary HTML that may be pulling in CSS from various places and like all that kind of stuff. Gutenberg provides an incredible foundation for collaboration. And collaboration is key, right? If we&#8217;re talking about the copilot era here, I don&#8217;t think for a long, long time we&#8217;re ever going to have necessarily AIs. Like you&#8217;re not going to have a CMS come out that like, doesn&#8217;t have an editor, because it just has a chat interface. You tell the AI what to do and hope that it does the right thing.</p>\n\n\n\n<p>Like that&#8217;s not going to be the case for a really, really long time, if ever. What you need is an editor where you can seamlessly collaborate with an AI. And if I was to take Matt&#8217;s words and bring them back into the conversation about learning AI deeply, I would love to see people in the community experimenting with UX concepts for collab.</p>\n\n\n\n<p>We are in the collaboration phase. Now is the time to start bringing your ideas to the table about what it looks like to collaborate with an AI in Gutenberg and how revolutionary that could be.</p>\n\n\n\n<p>[00:42:01] <strong>Nathan Wrigley:</strong> Are you open to those conversations? Is your team keen to hear from the community? And if that&#8217;s the case, where do we go to begin that conversation?</p>\n\n\n\n<p>[00:42:08] <strong>Dan Walmsley:</strong> That&#8217;s all happening in the open source community. I&#8217;ve had a couple of conversations with Matias or others, but really at a high level. I think it&#8217;s the community that needs to help drive that. We&#8217;ve shown what&#8217;s possible with Jetpack AI. It&#8217;s like the first quickest, most sane thing we could build.</p>\n\n\n\n<p>But in terms of the collaboration phase, my team is aligning the AI efforts of a large multinational corporation across many, many, many different modalities. Not just in the editor, but across image classification, and trust and safety, and all sorts of other things.</p>\n\n\n\n<p>On a day-to-day basis I don&#8217;t have a huge amount of bandwidth for one thing like the Gutenberg editor but I really encourage the community to get involved and share ideas.</p>\n\n\n\n<p>[00:42:53] <strong>Nathan Wrigley:</strong> Yeah. I&#8217;ll put links to the presentation that you were involved in, with, I know it was at least Anne McCarthy. I can&#8217;t remember who the other contributors were now but that was really fascinating. Interesting kind of first steps in, well, tell us what we want out of AI because we can see what it can do out in the wild with other things. You mentioned co-pilot and there&#8217;s obviously ChatGPT and all fun images that you can create with mangled fingers.</p>\n\n\n\n<p>Interesting to find out what the community want from it. How it will look in two or three years time? And getting involved in that conversation could really impact the project right now.</p>\n\n\n\n<p>[00:43:25] <strong>Dan Walmsley:</strong> I would also say, dark horse here, but I would love to see more people get involved in WordPress Playground. So for those don&#8217;t know, WordPress Playground they demoed it last year and I was actually in the room in New York for the WordCamp US there.</p>\n\n\n\n<p>[00:43:38] <strong>Nathan Wrigley:</strong> That is some astonishing tech.</p>\n\n\n\n<p>[00:43:41] <strong>Dan Walmsley:</strong> It is game changing. I mean, and it&#8217;s funny because it&#8217;s on the one hand you could look at it and be like, well, this is like a cute hack, but it&#8217;s you know, you would never run a website this way. But think about it, if you&#8217;re a person creating or modifying or wanting to come up with a new website. With no hosting, with no nothing, just sitting there like running a blob of JS in the browser.</p>\n\n\n\n<p>You can ask an AI to generate the entire site and remix it and destroy it and build it again, and like when you&#8217;re happy enough with it, click a button to download and put it on a real web host. It&#8217;s lowering the barrier to entry. And I can imagine if we get lots of good contributions, there&#8217;s already really good JavaScript API access for saying, install this plugin, or like, modify this file, right?</p>\n\n\n\n<p>And so if you go a step further, oh, generate an AI block that does X, Y, Z, right? And if you&#8217;re a developer that doesn&#8217;t already have WordPress or know WordPress, and you don&#8217;t have to pull down PHP, you don&#8217;t even have to write PHP. You have this like ephemeral WordPress in the browser and you can see what it&#8217;s capable of.</p>\n\n\n\n<p>I think that could bring so many potential developers into the WordPress community. Who are able to see what&#8217;s possible, have this low barrier entry, who have zero dependencies and can provide plugins and blocks and other cool ideas into the WordPress community who might not have had a chance to contribute before.</p>\n\n\n\n<p>[00:44:56] <strong>Nathan Wrigley:</strong> It&#8217;s amazing when you actually use it because you just assume that there&#8217;s a machine somewhere remotely that&#8217;s serving up that website and it just spun it up in a heartbeat. But of course it&#8217;s not. You can entirely unplug from the internet and there it is. It&#8217;s still working. And it took all of no seconds at all to get the whole thing going. It&#8217;s amazing.</p>\n\n\n\n<p>[00:45:17] <strong>Dan Walmsley:</strong> Yeah, it really is.</p>\n\n\n\n<p>[00:45:19] <strong>Nathan Wrigley:</strong> I will link to that as well. Yep.</p>\n\n\n\n<p>[00:45:21] <strong>Dan Walmsley:</strong> I hope that becomes the way that a lot of people build stuff on WordPress actually. It is a playground. It&#8217;s really fun. It reminds me of when I was playing with the first version of WordPress. But it&#8217;s just accessible to vastly, vastly more people. You know, anyone with a web browser?</p>\n\n\n\n<p>[00:45:35] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of like having a blank piece of paper next to you, one of a thousand bits of paper that you can just scribble on and screw it up and throw it over your shoulder and, okay, that didn&#8217;t work. Let&#8217;s try again. We&#8217;ll just blank canvas, start again. And actually, I don&#8217;t know if you did see the address that Matt gave at WordCamp Europe. That was one of the other things he discussed. So you are very much in alignment.</p>\n\n\n\n<p>[00:45:54] <strong>Dan Walmsley:</strong> It&#8217;s in my queue.</p>\n\n\n\n<p>[00:45:56] <strong>Nathan Wrigley:</strong> Okay. Well, sadly, I mean, I could honestly talk about this with very little authority for hours and hours and hours. But we&#8217;ve probably used up our allotted time.</p>\n\n\n\n<p>Dan, if anybody wants to reach out to you specifically, do you make yourself available in that way? And if so, where do we find you? Are you a Twitter fan? Or are you on, you know, you&#8217;re going to throw an email in our direction or a Slack channel? Let us know.</p>\n\n\n\n<p>[00:46:17] <strong>Dan Walmsley:</strong> Well, you can reach me on Twitter. Twitter.com/danwalmsley. d a n w a l m s l e y. It&#8217;s a tricky one. And, that&#8217;s a start.</p>\n\n\n\n<p>[00:46:28] <strong>Nathan Wrigley:</strong> Perfect. Well, thank you so much for chatting to us today about AI. I&#8217;m just sorry that I, uh, I can&#8217;t kind of keep up with the level of intelligence that&#8217;s probably required to make this conversation worth while, but I appreciate it.</p>\n\n\n\n<p>[00:46:40] <strong>Dan Walmsley:</strong> I super appreciate being on the podcast. I&#8217;m really, really excited about the next couple of years. And especially for WordPress. I think we&#8217;ve got like a lot of strengths that if we leverage them, can put us in an amazing position to empower a lot of people to, you know, publish and to continue to democratize publishing.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/danwalmsley\">Dan Walmsley</a>.</p>\n\n\n\n<p>Dan is a long-time user of WordPress, having started using it even before version one was released. With a passion for experimenting with different publishing platforms, Dan eventually discovered WordPress and has been using it ever since. Currently working at Automattic as a Code Wrangler, Dan is part of the Applied AI team. Although the team is relatively new, with only a few members, their mission is to coordinate and guide the various AI initiatives within the company. Recently, he has been focusing on automating internal workflows and communications, a particularly crucial aspect given the distributed work setup, which spans 70 countries and multiple time zones.</p>\n\n\n\n<p>We start the conversation talking about Dan’s background. He’s recently decided that AI is a truly transformational technology and so has taken steps to learn the skills needed to understand and implement it.</p>\n\n\n\n<p>Dan talks about how Large Language Models work, and how ChatGPT has driven awareness, and demand, for AI technologies in a way that was almost impossible to predict just a year ago. This has caused many companies to become deeply interested in AI and what it can do for their business workflows.</p>\n\n\n\n<p>We get into whether the reality of AI can live up to the hype. Do we have enough understanding of AI to know what its impact will be on the workplace, or are we just in the middle of a media frenzy which will die down over time? Dan challenges the notion that AI will take many of our jobs, and emphasises the economic value that AI can bring.</p>\n\n\n\n<p>We move on to explore the differences between site generators and site builders, and Dan introduces the concept of the ‘copilot era’ in which website creation can be somewhat automated. He highlights tools like Jetpack AI which can generate content and modify the tone of voice right inside of WordPress.</p>\n\n\n\n<p>Dan stresses the importance of building AI tools with user interfaces that learn from human input in order to improve over time. He thinks that companies which measure user responses and interactions will gain a significant advantage in AI development, while those who fail to improve their AI content generation will be left behind.</p>\n\n\n\n<p>Whether you’re new to AI or have been paying attention for a while, this podcast offers a fascinating insight into its impact on society, and how it can accelerate progress in fields like scientific research.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://movabletype.org/\">Moveable Type</a></p>\n\n\n\n<p><a href=\"https://automattic.com/\">Automattic</a></p>\n\n\n\n<p><a href=\"https://docs.langchain.com/docs/\">LangChain</a></p>\n\n\n\n<p><a href=\"https://openai.com/\">OpenAI</a></p>\n\n\n\n<p><a href=\"https://www.typescriptlang.org/\">TypeScript</a></p>\n\n\n\n<p><a href=\"https://www.andrewng.org/courses/\">Andrew Ng&#8217;s Deep Learning course</a></p>\n\n\n\n<p><a href=\"https://dayoneapp.com/\">Day One</a></p>\n\n\n\n<p><a href=\"https://woocommerce.com/\">WooCommerce</a></p>\n\n\n\n<p><a href=\"https://senseilms.com/\">Sensai</a></p>\n\n\n\n<p><a href=\"https://www.deepmind.com/\">Google Deep Mind</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Perplexity\">Perplexity</a></p>\n\n\n\n<p><a href=\"https://stability.ai/stablediffusion\">Stable Diffusion</a></p>\n\n\n\n<p>Google&#8217;s &#8216;<a href=\"https://arxiv.org/pdf/1706.03762.pdf\">Attention is all you need</a>&#8216; paper</p>\n\n\n\n<p><a href=\"https://github.com/features/copilot\">GitHub Copilot</a></p>\n\n\n\n<p><a href=\"https://jetpack.com/ai/\">Jetpack AI</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=rWH6Z6cJe5o\">AI and the future of WordPress</a> &#8211; Panel session</p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></p>\n\n\n\n<p><a href=\"https://twitter.com/danwalmsley\">Dan&#8217;s Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WPTavern: Jetpack Launches Newsletter Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147385\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wptavern.com/jetpack-launches-newsletter-product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6345:\"<p><a href=\"https://jetpack.com/blog/jetpack-12-4/\">Jetpack 12.4</a> was released today, launching the plugin&#8217;s <a href=\"https://jetpack.com/blog/introducing-jetpack-newsletter/\">Newsletter product</a>. It allows users to send blog posts as newsletters, without the hassle of having to copy and paste from the WordPress editor into another newsletter service&#8217;s campaign editor and reformat it for email. This launch comes seven months after <a href=\"https://wptavern.com/wordpress-com-launches-newsletter-product\">WordPress.com launched its newsletter offering</a>, which uses the same underlying infrastructure to deliver emails.</p>\n\n\n\n<p><a href=\"https://jetpack.com/newsletter/\">Jetpack Newsletter</a> is launching as a free product, with a percentage of fees collected from creators who choose to offer paid subscriptions:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Fees are only collected when you accept payments. Fees are based on the Jetpack plan you have and are calculated as a percentage of your revenue from 10% on the Free plan to 2% on the Complete plan (plus Stripe fees). </p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1262\" height=\"844\" />\n\n\n\n<p>Jetpack users are probably familiar with the plugin&#8217;s ability to send posts to subscribers via email. The newsletter feature uses this <a href=\"https://jetpack.com/support/subscriptions/\">same infrastructure</a> that site owners have relied on for years to allow subscribers to get updates in their inboxes when new posts are available.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1560\" height=\"688\" />\n\n\n\n<p>Newsletters can be turned on under the Discussion tab in the Jetpack settings. Many Jetpack users likely already have this turned on.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1458\" height=\"596\" />\n\n\n\n<p>The Subscribe block can be placed anywhere on the site and new subscribers will be sent a confirmation email to confirm their subscription. They have the option to choose between instant, daily, or a weekly digest, as well as control the time and day they receive their digests. Subscribers can also pause or unsubscribe from the site.</p>\n\n\n\n<p>Subscriber import and other features, such as newsletter stats for opens and clicks, is available via the Jetpack admin pages on WordPress.com. </p>\n\n\n\n<p>At this time, newsletter creators can only import up to 100 subscribers via CSV file. This is severely limiting for all but the smallest of newsletters, but the Jetpack team has confirmed that it is high on their list of priorities to change as it creates too much of a barrier. The limit was set for spam prevention, but it makes it nearly impossible to migrate to Jetpack Newsletter if you have a popular newsletter. Those who are on paid plans can upload unlimited subscribers. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2020\" height=\"1076\" />\n\n\n\n<p>Newsletter creators can change the site name and logo for their emails and paid users will have more customization options in the future.</p>\n\n\n\n<p>One thing that sets Jetpack Newsletter apart from the vast majority of other traditional email service providers is that it allows unlimited email sends and unlimited subscriber lists for both free and paid users. </p>\n\n\n\n<p>Most popular services like Mailchimp, Brevo, and SendGrid, allow only a few hundred emails to be sent per day or up to 1,000 per month for free users. Paid plans get expensive quickly as a newsletter&#8217;s subscriber base grows. Emails and subscriber numbers usually determine the pricing for these services, which makes Jetpack&#8217;s product stand out from the crowd, especially for those who intend to independently monetize their newsletter through ads and paid sponsorships.</p>\n\n\n\n<p>Jetpack Marketing Lead Rob Pugh said that although popular newsletter services are more limited in emails and subscriber numbers, they also offer a completely different feature set. The Jetpack Newsletter product is aimed at competitors like <a rel=\"noreferrer noopener\" href=\"http://substack.com/\" target=\"_blank\">Substack.com</a>, <a rel=\"noreferrer noopener\" href=\"http://beehiiv.com/\" target=\"_blank\">Beehiiv.com</a>, and <a rel=\"noreferrer noopener\" href=\"http://ghost.org/\" target=\"_blank\">Ghost.org</a>, which also all offer unlimited email sends. On paid plans, Jetpack Newsletter&#8217;s offer beats Substack, as it collects 2% (plus Stripe fees) as compared to Substack&#8217;s take of 10% plus credit card fees.</p>\n\n\n\n<p>Newsletter creators should be aware that Jetpack Newsletter&#8217;s unlimited emails and subscribers may not last forever, as the FAQ section of the product states that it is an introductory offer:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>As an introductory offer, we do not limit you or charge you based on your email list size. This may change in the future. Fair usage policy applies.</p>\n</blockquote>\n\n\n\n<p>Jetpack representatives were not able to confirm the limits of fair usage or how long the introductory period will last.</p>\n\n\n\n<p>&#8220;Launching without a limit on emails isn’t the most financially responsible thing, but we’re most excited to get this feature into the hands of people to get feedback,&#8221; Pugh said. &#8220;We’re focused on the immediate roadmap to make the product better, although there will likely be a limit at some point in the future if we see extreme use from people on free plans.&#8221;</p>\n\n\n\n<p>He said the Jetpack team goes out of its way to make pricing changes as fairly as possible &#8220;and we don’t want to pull the rug out from anyone, so we’ll certainly consider how people are impacted before making changes.&#8221;  </p>\n\n\n\n<p>Until the limited subscriber import issue has been solved, any pricing changes down the road are only likely to affect newsletters that are just starting out getting people signed up. Apart from this limitation, Jetpack Newsletter is making a competitive debut in the market. For those who are already using Jetpack and have an existing subscriber base, it makes it nearly effortless to add paid subscriptions. Using the block editor is far easier than most newsletter campaign editors out there, and Jetpack streamlines the sending process so creators don&#8217;t have to copy and paste between email services.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 22:24:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6189:\"<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=07%2F25%2F2023..08%2F01%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br /><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br />A monumental release<br />Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: Welcome Katie Keith from Barn2 Plugins to the Do the Woo Host Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75760\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://dothewoo.io/katie-keith-new-do-the-woo-host/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:446:\"<p>Today Marcus talks with his new co-host of Woo BizChat, Katie Keith, as she shares her Woo story and what you can expect from these two moving forward.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/katie-keith-new-do-the-woo-host/\">Welcome Katie Keith from Barn2 Plugins to the Do the Woo Host Team</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 10:25:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Start Testing WordPress’ New Interactivity API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147355\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/start-testing-wordpress-new-interactivity-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2510:\"<p>Earlier this year, WordPress contributors announced that they are <a href=\"https://wptavern.com/wordpress-contributors-propose-new-interactivity-api-for-frontend-blocks\">working on a new Interactivity AP</a>I that will allow developers to build interactive blocks. This API will support the kinds of frontend experiences that let visitors interact with content and get feedback without having to refresh the page.</p>\n\n\n\n<p>Automattic-sponsored contributor Luis Herranz, who has been working on the API, is now <a href=\"https://twitter.com/luisherranz/status/1686064632400658439\">encouraging developers to test it</a> with their own blocks. <a href=\"https://wptavern.com/gutenberg-16-2-brings-improvements-to-pattern-management-introduces-vertical-text-orientation\">Gutenberg 16.2</a> included the Interactivity API under the Experiments flag and this version or later is required for testing it.</p>\n\n\n\n<p>Developers can follow the API&#8217;s <a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/1-getting-started.md\">&#8220;Getting Started&#8221; guide</a> on GitHub to scaffold an interactive block with `@wordpress/create-block`. Take a look at the <a href=\"https://github.com/WordPress/gutenberg/discussions/52904\">roadmap</a>, which has an extensive list of tasks the team has in mind for the initiative and will include tracking issues for features as they progress.</p>\n\n\n\n<p>Those who are testing the Interactivity API can follow and participate in the discussions happening in the new <a href=\"https://github.com/WordPress/gutenberg/discussions/categories/interactivity-api\">Interactivity API category</a> on GitHub. This early testing invitation is for those who are eager to help shape the API and offer feedback.</p>\n\n\n\n<p>&#8220;If you want to use the Interactivity API in your projects, please subscribe to this discussion where we will provide updates with instructions for migrating your code each time there is a breaking change,&#8221; Herranz said.</p>\n\n\n\n<p>There is no official documentation yet, but a the team is working towards creating a bare-bones version first which will be used as the base for the official docs further down the road. The documentation efforts are being led by Automattic-sponsored contributor <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> and anyone willing to collaborate is invited to <a href=\"https://github.com/WordPress/gutenberg/discussions/51928\">join the conversation on GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 21:38:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: People of WordPress: Ihtisham Zahoor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10231:\"<p>From administrator to web developer thanks to the supportive WordPress community. Through learning from other software users in Pakistan, Ihtisham Zahoor knew that his life would change. He moved cities and careers to make his life through open source.</p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&ssl=1\" alt=\"Ihtisham Zahoor in the moutains.\" class=\"wp-image-15478\" />\n\n\n\n<p>Ihtisham, from Haripur, a city in northern Pakistan, said: “The WordPress community made me a firm believer in the power of open source software. This is why I am an enthusiast and one who enjoys contributing back to the community via writing, speaking, and helping organize meetups.”</p>\n\n\n\n<p>When Ihtisham discovered WordPress, his fascination for working with computing grew. He knew he did not want to just work in administration his entire career.</p>\n\n\n\n<p>Ihitsham describes himself as an ‘introvert’ and therefore the idea of remote work appealed as he could still add value to others through technology. He was intrigued by the thought of the freedom to choose his work hours. However, without access to others who had already transformed their careers and lives through web development, he felt he ‘had no path to follow to turn my dream into a reality.’</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges become opportunities to learn when there is an active community&nbsp;&nbsp;</strong></h2>\n\n\n\n<img width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=675%2C900&ssl=1\" alt=\"Ihtisham Zahoor wearing a sweatshirt with the London tube sign \'Mind the Gap\'.\" class=\"wp-image-15480\" />\n\n\n\n<p>Lacking any kind of informed support network to advise or guide him, Ihtisham devoted time to online research to find the next steps he could take. Looking back, he believes that for those who are not in a network with others with similar interests, it can be hard to keep learning and experimenting with new things. Isolation can be a barrier to working in web development.&nbsp;&nbsp;</p>\n\n\n\n<p>He said: “I think it is not easy to stay motivated when there aren’t immediate rewards for the hard work we do. Sometimes, weeks would go by when my only focus would be to stay motivated rather than give up.”</p>\n\n\n\n<p>After another two years of combining learning and work, Ihtisham took up using WordPress as a full-time career. He moved to the capital of Pakistan, Islamabad. It was not easy at first. He recalls: “After many failed attempts at getting hired and desperate moments, I finally received an offer from a digital agency as a web developer focused on the WordPress platform.”</p>\n\n\n\n<p>He added: “Moving to work with a bigger agency was one of the best decisions of my life as it helped me with my professional growth by becoming familiar with the whole WordPress ecosystem in a supportive environment. I was valued for my opinions in the web projects in which I was involved. I was also appreciated and encouraged for the open source work I did for the company.” He summarized his enthusiasm for WordPress like this: “It is really interesting figuring out what is happening in the backends. I like problem-solving and finding solutions which you can do with WordPress.”</p>\n\n\n\n<p>During the Covid-19 pandemic, Ihtisham moved to join a start-up based in his hometown which provides web development services to international clients. He works as a developer and has the opportunity to learn more about client communication and project management. “WordPress has opened up so many opportunities for me. It has been an exciting journey for me with lots of learning every day,” he said. In particular, he has discovered an interest in APIs and regularly uses his spare time to follow tickets in the hope of one day contributing even more to topics, such as, third-party app integration through APIs on WordPress sites.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Give back through WordPress community</strong></h2>\n\n\n\n<img width=\"800\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=800%2C599&ssl=1\" alt=\"Ihtisham Zahoor speaking at a meetup.\" class=\"wp-image-15477\" />\n\n\n\n<p>It was not just software that made a difference in Ihtisham’s life. Joining a welcoming and sharing community was transforming for him. Recalling those early days of isolation, he values the WordPress community and is wholly committed to the power of open-source software. He now enjoys writing, speaking, and organizing meetups to give back to both to the community. He has written software for the platform and contributes to the Core work, which he describes as a ‘humbling’ experience. He is fond of <a href=\"https://islamabad.wordcamp.org/\">WordCamp Islamabad</a> and in 2023 is on the organizing team to help bring both WordPress and its community to others in Pakistan.</p>\n\n\n\n<p>“My first experience,” he said, “was that everyone was so friendly and open to sharing what they have learned, even though they were all busy working. This really had an impact on me. It really helped me and gave me the confidence that I could work with WordPress…. It was a real step forward for me joining this community.” </p>\n\n\n\n<img width=\"1024\" height=\"512\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&ssl=1\" alt=\"Ihtisham visited WordCamp Karachi.\" class=\"wp-image-15482\" />\n\n\n\n<p>A particular meeting in 2018 led to new friendships through the WordPress community. Ihtisham was on a train to Karachi for the first ever Pakistani WordCamp in 2018 and met a group of fellow attendees he now regards as close friends. What impressed him most about the camp was that although he met many people with considerable expertise, they also had a generosity of spirit and humbleness in their willingness to share this knowledge. in sharing it. Now, he and this group of friends make a point to taking trains across the country, which allows him to fulfil another dream of traveling widely. He says these things and other ‘side benefits’ have been made possible by the WordPress community, and for that, he is &#8216;forever grateful&#8217;.<br /><br />Ihtisham particularly wanted to share his story through this People of WordPress article to encourage those starting with little or no support to remain persistent. He knows from experience breaking into the tech world can be hard, especially when you may be switching from doing something else and have no ‘track record’ to offer. </p>\n\n\n\n<p>He feels he is a living example of how perseverance can lead to success. He offers these words to anyone thinking of making a move into development using the WordPress platform: “I attribute my success (financial and mental well-being) to the open-source nature of WordPress and its amazing community. It would not be possible to learn and use the plethora of free tools WordPress provides if it weren’t an open-source platform. It is for that reason I feel obligated to contribute back to this platform to the best of my abilities.” To those who are finding getting going difficult, as he did, he adds: “Get yourself a clear learning path and just dive in doing WordPress, and things will get better for you over time as they were for me, I promise. Good Luck!”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To help you discover more about how to use the WordPress software, there is a free resource from the community, <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Ihtisham Zahoor (<a href=\"https://profiles.wordpress.org/shaampk1/\">@shaampk1</a>) for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), and Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>) for interviews, the feature and collaborating on images. To Chloe Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mark Smallman (<a href=\"https://profiles.wordpress.org/marks99/\">@marks99</a>), and Mary Baum (<a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a>) for reviews. Thanks to the late Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\">@sthakor</a>), Maja Loncar (<a href=\"https://profiles.wordpress.org/majaloncar/\">@majaloncar</a>), Maedah Bahtool (<a href=\"https://profiles.wordpress.org/maedahbatool/\">@maedahbatool</a>) and other members of the Marketing and Polyglots Team for their contributions.</p>\n\n\n<p>The People of WordPress series thanks Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support.</p>\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\"><img width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 20:22:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: WordPress Performance Analysis Finds Translations May Significantly Slow Down Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/wordpress-performance-analysis-finds-translations-may-significantly-slow-down-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3110:\"<p>After a recent in-depth performance analysis earlier this year showed that translations can have an impact on server response times, WordPress contributors are <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">proposing</a> half a dozen technical solutions for consideration to improve performance for the ~56% of WordPress sites that use translations.</p>\n\n\n\n<p>&#8220;Initial benchmarks showed that the median loading time for a localized site can be <strong>up to 50% slower</strong> than for non-localized sites, depending on which themes and plugins are being used,&#8221; Google-sponsored WordPress core committer Pascal Birchler said.</p>\n\n\n\n<p>Based on <a href=\"https://github.com/WordPress/performance/issues/171\">recent discussions</a> on GitHub, the Performance team has whittled it down to an updated list of six possible top contenders for speeding up sites with translations, including the advantages and disadvantages of each:</p>\n\n\n\n<ul>\n<li>Solution A: Use different file format</li>\n\n\n\n<li>Solution B: Native gettext extension</li>\n\n\n\n<li>Solution C: Cache translations</li>\n\n\n\n<li>Solution D: Lazily evaluated translation calls</li>\n\n\n\n<li>Solution E: Optimize/Rewrite existing MO parser</li>\n\n\n\n<li>Solution F: Splitting up translation files</li>\n</ul>\n\n\n\n<p>Localized WordPress sites currently download <code>.po</code> and <code>.mo</code> files that contain the translations, but the first suggested solution proposes storing translations in <code>.php</code> files and using the <code>.mo</code> file as a fallback, as Birchler proposes that PHP loading and executing another PHP file would be a faster approach. He has a proof of concept on GitHub at at <a href=\"https://github.com/swissspidy/wp-php-translation-files\">swissspidy/wp-php-translation-files</a> and <a href=\"https://github.com/swissspidy/ginger-mo/\">swissspidy/ginger-mo</a>.</p>\n\n\n\n<p>&#8220;When looking at all these factors, it appears that a <strong>revamped translations parser</strong> (<strong>solution E</strong>) could bring the most significant improvements to all localized WordPress sites,&#8221; Birchler said. &#8220;Especially when combined with a <strong>new PHP translation file format </strong>(solution A), which Ginger MO supports, the i18n overhead becomes negligible. Of course the same risks associated with introducing a new format apply.</p>\n\n\n\n<p>&#8220;On top of that, a revamped i18n library like Ginger MO could also be combined with other solutions such as caching or dynamic MO loading to potentially gain further improvements. However, those routes have yet to be explored.&#8221;</p>\n\n\n\n<p>The Performance team plans to test these ideas further on a wider scale through its <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a> feature project after gathering feedback from the broader community. August 6, 2023, is the deadline for leaving feedback on the <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">proposal</a>, which includes benchmarks and more details from the analysis.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 19:29:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Gutenberg Times: Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=25089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:57711:\"<p>Anne McCarthy and Birgit Pauli-Haack chat about patterns, Gutenberg 16.3 and WordPress 6.3. </p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<p><strong>Anne McCarthy</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://profiles.wordpress.org/annezazu/\">WordPress profile</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/in/anneguionmccarthy/\">LInkedIn</a></li>\n\n\n\n<li>WPSlack channel <a href=\"https://wordpress.slack.com/archives/C015GUFFC00\">#FSE-outreach-experiments</a></li>\n</ul>\n\n\n\n<p><strong>WordPress 6.3</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/25/the-benefits-of-prioritizing-and-measuring-performance-in-wordpress-6-2/\">The benefits of prioritizing and measuring performance in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a>. </li>\n</ul>\n\n\n\n<p><strong>Gutenberg 16.3 </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-16-3-adds-new-tools-for-patterns\">Gutenberg 16.3 Adds New Tools for Patterns</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, hello and welcome to our 87th episode of the Gutenberg Changelog podcast. In today&#8217;s episode, we will talk about Gutenberg 16.3 and WordPress 6.3. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress open source project. And today, I have the special pleasure of welcoming Anne McCarthy on the podcast with me. Anne is a product manager in Automattic and also a sponsored contributor on the Automattic&#8217;s Five for the Future program. I&#8217;m thrilled to have you on, Anne, how are you today?</p>\n\n\n\n<p><em>Anne McCarthy</em>: I&#8217;m thrilled to be here, so thank you for having me. I&#8217;m doing pretty well, I&#8217;m talking all about WordPress all day, which is a wonderful day in my book, so.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: In mine too. Yeah, so that&#8217;s why we&#8217;re good on this podcast together. So, you are just coming from the latest Hallway Hangout with the performance team. I know it&#8217;s only a half an hour ago or so, is there anything on the takeaways that you want to share right here with the listeners?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, so one of the things that stood out to me on the call, and beyond just the performance improvements that will be out of the box when you&#8217;re using WordPress, is a resolution to a 14-year-old track ticket, which blew my mind, where WordPress 6.3 will actually introduce support for registering scripts with async and defer attributes. And the reason I bring this up, it&#8217;s all part of the script API, is that people have to adopt it to see the impact. So, this is something that&#8217;s bundled under performance improvements and something that actually wasn&#8217;t on my radar in the same way, but I wanted to call it out for plugin authors because it&#8217;s one of those things that we need people to adopt in order to see the benefits.</p>\n\n\n\n<p>And there&#8217;s also great backwards compatibility. One of the things Felix called out was, let&#8217;s say you have a really large plugin and you have your own extensions within that plugin sphere, if those extensions haven&#8217;t adopted these changes, it will default to a more conservative approach. Meaning, there&#8217;s backwards compatibility, and if they&#8217;re&#8230; All of your extensions have it, your major plugin has it, and anything dependent on that major plugin that has that script in place and has the defer async attributes in place, will then upgrade automatically to use the new and improved stuff. So, I just wanted to call that out, I think it&#8217;s a great thing to have in place and we just need folks to adopt it. So, that was a big takeaway for me, beyond just the many improvements.</p>\n\n\n\n<p>And the last thing I&#8217;ll say is we did a data deep dive live on the call, looking at graphs and all this nerdy stuff, which was awesome, showing that basically after releases came out, seeing improvements in things like Core Web Vitals and actually in the data, which proves things from the lab. They talk about, &#8220;The lab shows this,&#8221; so meaning the confined environment versus in the field, so what you actually see in the real world, and what&#8217;s being shown in the lab ahead of WordPress releases is being proven in the field on live sites that are being indexed. So, that was really exciting to see. I don&#8217;t fully understand every aspect of the data but it was cool to go through with people who do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much for this just-in-time note about the Hallway Hangout. I know your process is that the Hangouts were recorded and you will make a post on the Make Blog in the next few days, where you summarize it and then have all the resources linked up on the post. I also will dig into a little earlier this year, I don&#8217;t know if it was April or May, Felix Arntz, from the performance team, also posted a blog post about the changes and how the improvements were with block themes and these kinds of things. But I think there was one on the Make Blog but they were also on his personal blog.</p>\n\n\n\n<p>So, I&#8217;m going to link that up just to recall that, it was also in the weekend edition but not everybody reads that, or remembers that. I don&#8217;t always remember things, but I know it was in there. Yeah, so performance has been a big, big improvement on WordPress, I saw something like 17% with classic themes and about 20% with block themes, right out of the box, if you don&#8217;t slow your site down with very old plugins, of course. But that&#8217;s another story and outside the scope of this Changelog podcast episode. So, thank you so much. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, thanks for giving us space to talk about that, it&#8217;s exciting.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Listener Questions</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, I got an email from a listener, thank you so much, an accessibility advocate, and she wanted to know about the best practices to build sites with sidebars on the block themes, and those are read through assistive technology. So, screen readers, when they come to a website, they use the script to content link that comes out automatically with WordPress, but that skip the content also needs a target where to stop.</p>\n\n\n\n<p>So, content needs to be tagged with main to actually have that work. If people are creating sites or layouts with column blocks and each column doesn&#8217;t have any tag, but one is a sidebar that&#8217;s a reusable block, or it&#8217;s a template part, it will read through that every single time on every page, if it&#8217;s not tagged non-content, or a sidebar, or side, or something like that, or the main content is not tagged. Now, you couldn&#8217;t do that with a classic theme from a user interface, but you can do it actually with a group block that has these HTML elements that you can designate your content being either a main or a side. But the most important part is that you wrap whatever sidebar you have into a group block and then select those HTML elements. They&#8217;re also not very prominent, they&#8217;re in the advanced section.</p>\n\n\n\n<p>So, I just wanted to, those who are creating themes through the site editor or helping others to create templates, to be aware of these accessibility ramifications, or to make it known what people who are not visually impaired can see, that that&#8217;s repeated content, but the screen readers that help those that are impaired to go through the internet websites need a little help from the content creators or from the template creators. So, I&#8217;m sure there will be some more information about that, I just wanted you to be aware, and thank you for the listener to pick up on that and point that out. Accessibility is such an important part of web design and web building, that we need to make sure that if we use just the interfaces that we have those tools in place.</p>\n\n\n\n<p><em>Anne McCarthy</em>: I couldn&#8217;t agree more. Thanks for going through that too, it&#8217;s always good to learn about this stuff and to make sure that the default implementation ideally, can be done well. And this is where folks can create patterns into the parts to have this set up automatically in their themes with the right stuff in place. So I also encourage blocking authors to think about that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I think it&#8217;s sometimes really hard on the user documentation to point out the higher ramification. If you just point out this little piece on the sidebar that is a new interface, what is the bigger objective for that?&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Announcements</strong></h3>\n\n\n\n<p>So, I&#8217;m really glad that the listener sent me that email and let me know about that, that&#8217;s a good question. So, Anne, you just published a post on the news site, speaking of changes for wordpress.org and it&#8217;s titled, Synced Patterns: the Evolution of Reusable Blocks. On the Podcast, we talked a little bit about the upcoming changes, so what is this post all about?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, so this builds on work that&#8217;s done in 6.3, to bring the creation of patterns to the experience, and that&#8217;s part of that you can sync or unsync patterns, which basically consolidates the concept of reusable block into the new concept of synced patterns. So this post is just trying to flag the change for people because reusable blocks is a known concept in the WordPress community, and retiring such a known concept deserves a lot of attention. And as part of this, there will be documentation updated, I am keeping an eye on that there, but this is just one of many efforts, including nudges in the interface to help communicate this change to folks. So, just see this as part of a larger effort to make sure that we&#8217;re bringing folks along as things evolve. I&#8217;m personally really excited because I think compared to the concept of reusable blocks, which sounds almost more technical than it should be, I think patterns is a much more approachable concept for folks to get behind and to use.</p>\n\n\n\n<p>So, I&#8217;m really excited and I hope it helps surface this more for folks, whenever they&#8217;re working with WordPress. But yeah, it&#8217;s pretty exciting. So, unseen patterns are essentially what you know and love as patterns today, you can put them in your post or page or template and customize it as you&#8217;d like, it&#8217;s not synced across the entire system. Sync patterns are just exactly how our usable blocks worked. They&#8217;re synced across things, you can have a way to convert to blocks if you want to edit it individually and turn it into an unsynced pattern. But yeah, there&#8217;ll be a whole interface to manage all your patterns, if you&#8217;re using a block theme, if you&#8217;re using a classic theme, we basically just reuse what&#8217;s in place for the reusable block screen. So, honestly, it&#8217;s a lot of just interface changes for, if you&#8217;re using a classic theme and for a block theme it unlocks a lot of functionality in terms of being able to manage all your patterns across themes and plugins and all sorts of stuff.</p>\n\n\n\n<p>So, yeah, it&#8217;s a huge, huge step forward and a big change, so hopefully this helps get you prepared, and if you have questions or things that you want answered, yeah, I&#8217;m @annezazu, Let me know what we&#8217;re not thinking about because I&#8217;m sure there&#8217;s a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and I had some conversations before in the last two months, once I saw that this change is going to come, and I was really excited that finally we have the feature to grade your own patterns in your own site. I think there were quite a few plugins out there that had very high installs and it&#8217;s now coming to core. I think the design team and the developers did a great job in just changing the name but leave everything else in place, for those who use reusable block or created reusable block, everything will be familiar, just the names are going to change. The concept itself is not necessarily retired, it&#8217;s just going to build into the pattern metaphor more. Because really, the only difference between a pattern and a reusable block was the synchronization over the instances. Yeah, definitely.</p>\n\n\n\n<p>Yeah, so we talked about it here at the podcast before and it brings us a leap forward, it also opens up the doors to additional changes. Because what I hear also, and you probably hear it even more, is what&#8217;s missing is that if you have a pattern and that&#8217;s used around the website, but all of a sudden you want to change styles, you&#8217;re not catching every pattern because you need to open up that, switch it out, you have to work around that. And so, partial synced patterns are now possible because we have an interface now, and it&#8217;s certainly further down the roadmap to find a way for the canvas to remember this was an unsynced pattern, but it can be partially synced. Because that is certainly missing in between where you don&#8217;t want to update content but you want to update the styling here, and the content stays the same that it was there.</p>\n\n\n\n<p>So, it&#8217;s all a little bit&#8230; But bringing it all together is reducing the cognitive load on things and have it all in one metaphor rather than have different ways on doing things. And you&#8217;ll find it just the same way you found it before. The icons are the same and the color is the same and the list views&#8230; I think you&#8217;ll find that the switch over to the new thing from reusable block to sync pattern is relatively&#8230; I wanted to say harmless, but smooth. Painless is, I think, the one that I was looking for.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s Released &#8211; WordPress 6.3</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So, that brings us to our section on what&#8217;s released. WordPress 6.3 is coming fast, Release Candidate 2 is out, has been out since the beginning of the week, and is ready for testing. The final release is scheduled for August 8th, and that&#8217;s less than two weeks to go. So, what&#8217;s the latest information about 6.3? Is everything on track? The dev notes have been out, your post is out about the sync patterns, you also published a post about the accessibility improvements and there have been a ton of dev notes also for the performance improvements. Is there anything else that has been new or what are the features that you are most excited about?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh man, that&#8217;s a great question.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Can you pick?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, can I pick? I will say, actually, I&#8217;m very excited&#8230; I did a YouTube video on this. There&#8217;s some hidden features and one of them, that&#8217;s not really hidden, but I think it can be taken for granted, it&#8217;s really the block theme previews. That has been something, that people have been unable to preview a block theme. So to even try to explore a required setting up a test site required, or just fully activating it without knowing how it might impact your site, and the ability to preview&#8230; And the preview uses the site editor, so you&#8217;re both getting a sense of what the theme will do, how it might impact your site, what bells and whistles it has, and it allows you to actually dive into the site editor itself and get a feel for it. And I&#8217;m just completely excited about that.</p>\n\n\n\n<p>I think that will be a huge thing with adoption that will be the unsung hero of this release in my mind. It&#8217;s been something that&#8217;s been a pain point for a long time and a lot of work went in to make it smooth, and yeah, it&#8217;s something I&#8217;m very excited to play around with and to see how it impacts things and helps folks step into that world. The only other thing&#8230; Thank you for calling out the accessibility improvements as well, so much work has gone into that with a lot of these features and more work remains to be done. But I&#8217;m in particular excited about some of the improvements to List View, which I know Alex Stein spent a lot of time doing, and so I want to call that out in particular as something that I&#8217;m quite excited about. I think the only other thing on my mind relates to, right now, there is some conversation around footnotes and how footnotes are being stored, and there&#8217;s some interesting dialogue there.</p>\n\n\n\n<p>I think we&#8217;ll end up seeing fixes get in place for it, but it&#8217;s just neat how these tiny blocks that are packed full of power are continuing to be iterated on at this point and getting bug fixes. So thank you to everyone who&#8217;s testing, because a lot of that has come from testing and feedback. And I know it might seem like, oh, we&#8217;re in the RC, things are smooth sailing, but you never know. We&#8217;ve had to remove stuff, we had to remove something in 6.2, so we still have time for the final release and we want it to be as polished and bug-free as possible.</p>\n\n\n\n<p>So it&#8217;s a very high impact time to be testing WordPress 6.3. This is actually my favorite time, because if you find something now, it&#8217;s also not great, but if you find something now, you prevent it for millions of people, so I think it&#8217;s a really exciting and important time. But there&#8217;s nothing, I&#8217;m trying to think of anything else in my mind that&#8217;s super&#8230; Beyond all this pattern stuff and all the other stuff that we&#8217;ve been talking about, but the blocking previews really does stand out to me personally, as something as I&#8217;m particularly excited about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I really like how the style book is happening around the site editor, that you can really see all the&#8230; Even if you change something on the style variation and then propagate it, you see how it changes all the blocks, or if it doesn&#8217;t change the blocks. So, is the theme preview actually also using the style book? If you go into a preview and then you see the site editor, can you access the style book to see how the…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. Yeah, that&#8217;s what I thought.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes, you can. Yeah, the entire site editor is using the preview, it&#8217;s amazing. The main thing that&#8217;s missing right now that some folks have brought up is the ability to schedule and save this draft, those different things. So that is work that needs to be done, that got brought up in the product demo, that needs to be done still, but we&#8217;ll get there. I think that&#8217;s part of the fun about iterating on this stuff, is like, yeah, yeah, totally, that is part of the roadmap, that&#8217;s something we&#8217;ll get to.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I still remember the excitement, when the customers got that feature to schedule updates.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Really?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, where people got ready for Christmas changes or for special sales on their website and then they could put it in the customizer and schedule it and then go on vacation or whatever.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Which is very cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, which is really cool. And it wasn&#8217;t so long ago, so that&#8217;s why people are still, come from that excitement and find it missing. But yeah, getting the previous in is really big. Yeah, absolutely.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Now, also…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm, go ahead.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Revisions is the only other one that just came to mind, as we&#8217;re talking about revisions and saving and all that sort of stuff. The visual nature of the star revisions is so cool. Template and template part revisions didn&#8217;t make it for 6.3, but I&#8217;m hoping to see that in 6.4, and I think when that completion happens, I&#8217;m curious to see what kind of confusion might come up around if you have multiple different&#8230; I&#8217;ve already noticed that, some calls for testing, where people are like, oh, I made a change to the title of this, whatever, and then try to roll back with star revisions, and it&#8217;s like, oh no, you actually need do that with template revisions. So, having an intelligent system that works and makes sense, you know where to roll back, but there&#8217;s been so much good feedback about how visual and easy and beautiful the star revisions are. So, that&#8217;s another hidden feature that I like to talk about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s great. The hidden features of 6.3, with Anne McCarthy. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Could be here for two hours if I do that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, we have an open-ended thing here. Sooner or later I need to go to bed though. So, Anne and I, we are nine hours apart. So, Anne just got up and I&#8217;m at the end of the day, so.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 16.3</strong></h3>\n\n\n\n<p>So, Gutenberg 16.3, last time I looked it was about 180 PRs…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Ooh.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Enhancements</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230;it&#8217;s one of the larger Gutenberg releases from 54 contributors. Two of them were first timers, and I think it was a lot of polishing and bug fixes, but there were also a few enhancements that made it into 6.3, and some of them don&#8217;t, probably, but let&#8217;s talk about them. So, the first one that I see was that you can have more intuitive archive titles for your query title block, there&#8217;s quite a few changes around that. Those don&#8217;t make it into 6.3 though, but it&#8217;s because it&#8217;s the first time it&#8217;s in there I think. So you can change the titles of your archive pages, remove the archive type, and what else is in there?&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: I think this is hugely helpful because this is definitely something where we&#8217;ve gotten feedback from folks, where it was too generic before, it just showed archive title or whatever. It would not say specifically what you&#8217;re looking at, and when you&#8217;re creating a new template and you&#8217;re a first time user you might delete it, because you don&#8217;t know what it is. So knowing what it powers, knowing what it does, it&#8217;s a huge step up and I&#8217;m quite excited about this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. And then the whole change the title of your archive pages is such an improvement towards the classic experience, because you always needed a developer to remove something or to change the title and now you can do it by yourself and you can create any kind of different templates with a query block, or the post template block. Yeah. So, yeah, next up is the add, renaming, duplication, and deletion option to patterns. That&#8217;s certainly coming into 6.3, patterns now have a dropdown menu, you can assess the three dots and then allow you to rename, duplicate and delete patterns easily. It wasn&#8217;t easy to do that before, especially the removal of patterns from your my patterns kind of thing. Yeah, it was a little bit convoluted because it wasn&#8217;t through the editor, now you can do it all through the editor. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: I&#8217;ll also note, one of the reasons why this is also so important to get in and why it was backported in my opinion, is that when you are setting&#8230; You create a pattern and you set the sync status, so synced or unsynced, you cannot change that status after the fact. So, let&#8217;s say you make a mistake, you create an unsync and you&#8217;re like, wait, actually, I want this to be synced. Before you&#8217;d have to go in and copy/paste, this whole convoluted process, now, with the duplication you can duplicate, and when you duplicate you can basically decide the sync status. So that&#8217;s one of the things that came up, was we wanted a way to make it easy to give people control without having the option to change the sync status back and forth because that will create some muddiness.</p>\n\n\n\n<p>Let&#8217;s say you synced a pattern and then you randomly unsynced it two months later, imagine how that might create some chaos across your site. So, to limit that, we just basically said you cannot change the sync status after it&#8217;s created, but we&#8217;ll add in options to make it easy to manage those things. And things like, renaming and deleting are also just important basics to have, so yeah, I&#8217;m glad to see this in, and I think not being able to set the sync status might cause some confusion, so I&#8217;m curious how that lands with 6.3 and how we can integrate it for 6.4.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah, I had some questions that were around that before, but the duplication feature, yeah, one click duplication, it&#8217;s pretty much, your work is not wasted, you just can replicate it and move forward with that. Yeah. The next piece is enable focus mode editing patterns. It was available for template parts before the focus modals, but now it&#8217;s also available for patterns, and it is then also backport it to 6.3&#8230; I&#8217;m just going to double check.</p>\n\n\n\n<p><em>Anne McCarthy</em>: I&#8217;m nearly positive, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, me too, but…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Potentially not. Let&#8217;s see if it works.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Potentially not, yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Maybe we should consider it. It might be because a new feature, but I&#8217;m like&#8230; We&#8217;re both on the corridor triage team here, it&#8217;s like, thoughts on backporting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Maybe we should put it on the 6.3 editor task.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. Yeah, let&#8217;s drop it into the triage session we&#8217;re doing today. Nice, I love it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, and the next part is that&#8230; Well, it&#8217;s the copy, to make sure that reusable is removed from menus and all that, for the reusable block. The next part is the sticky header and pagination for pattern page. That is really cool.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. I love seeing that. And that basically takes the patterns section of the block editor and ensures that when you&#8217;re scrolling down, unless you have a ton of patterns, that top heading that you can filter with will still appear, and it&#8217;s a quality of life improvement and definitely something that, if you have lots of patterns, which a lot of sites do with block themes, it&#8217;s pretty critical to be able to switch between and see what you&#8217;re actually seeing. So, I was pretty excited to see that in there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I like the filter part, that you can just show me the synced patterns, just show me the unsynced patterns, so that&#8217;s really cool. The next one is, I wanted to mention it because that&#8217;s one of the changes, so the links that go to manage reusable blocks and manage patterns go to different places now. So, they go now to this site editor, where all the other interfaces are, to interact with patterns synced and unsynced patterns. There is that place, the WP admin looking place, still there, but now you can use all the site editor for the editing part. So, I think we will have that quite a bit in the next few releases, that we have a new managed thing, and then we can go back to the old thing, just because it might not be feature parity or so. I think that&#8217;s the first place where we can train ourselves with that.</p>\n\n\n\n<p>So, I like the site editor very much, but I&#8217;m still often going back to the WP admin and see a few things there. Yeah. Yeah, we talked about the sync status separation on the filter control already, but that&#8217;s coming also to 6.3, and it was backported to Beta 4. The components have been updated to support defined IDs for the text control component, that means that you can target them with CSS and also with JavaScript, and directly with the IDs, and identify…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Very cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230;particular instances of the text control component, which is really important for a lot of extensibility usage there. There were some changes for the Interactivity API, and that&#8217;s only on the Gutenberg plugin. That, of course, every time we have a new thing in WordPress, we need to think about turning it off. What is necessary to turn things off? And so, the same with Interactivity API, it has been merged into 16.2, but not for 6.3, not for the WordPress, it&#8217;s coming in 6.4. But even with the Gutenberg plugin enabled, some people still want to turn off the Interactivity API because it interferes with their extensions.</p>\n\n\n\n<p>So, there&#8217;s now a filter to do this, and there&#8217;s also a runtime support to the WP style directive, so you can, on the fly, change the style for some of the Interactivity API entities. So, that&#8217;s these two things of Interactivity API. I&#8217;m sure there will be, very soon, a little bit more, a higher level, but also a more strategic announcement or strategic documentation about the Interactivity API. I know a few of our coworkers are working on that, to get this out, but with all the documentation it&#8217;s always a little bit behind the features there. So, go into the PRs to learn more about it.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, I&#8217;ll note too on that front. I got some really good feedback from someone saying, &#8220;Hey, this project&#8217;s been hard to keep on top of.&#8221; And so that was feedback that&#8217;s been brought back to the folks working on that. So, I think, last I can remember, from a conversation, my brain&#8217;s a bit mushy in the last couple of weeks, but I think they&#8217;re going to try and experiment with using discussion issues as a way to keep track of things, which is a bit of a departure from using overview or tracking issue labels in GitHub, but I think it&#8217;s going to be interesting and we can learn from that. But it is, as you said, anytime you add something, we need to think about removing it, and I know the Interactivity API is likely slated for 6.4, so it&#8217;s definitely something you can keep on top of and this was a great thing to call out. I could see folks skimming over this and not realizing how important it is. So, it&#8217;s a good one to keep in mind.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. In WordCamp Europe, I talked with quite a few people&#8230; Well, there were 2000 people there and I probably talked to 200 or so. So, I couldn&#8217;t talk to everybody. But there were quite a few people who were a little bit hesitant with a block editor because they&#8217;re PHP developers, and JavaScript is not really their thing, and they were really excited about the Interactivity API and the bigger emphasis on the dynamic blocks rather than the static JavaScript block. Because they can use the render that they did in shortcuts and then in widgets or something like that, all the render code, they can now use for blocks and then put the Interactivity API just in the directives in there to, to make it replicate some of the features that they had before. Which seems to be easier than the JavaScript, jumping all in on the JavaScript side. Yeah.</p>\n\n\n\n<p>So, well, from the block library section, there&#8217;s one component, the range control, that now has an additional attribute for the default size of 40 pixels. I think it does a few other sizes, but you can now use it if you use it in your own plugin settings pages or your own sidebar items, you can have a different size as a default size managed there. So that&#8217;s pretty cool.</p>\n\n\n\n<p><em>Anne McCarthy</em>: My understanding of that one was that it was updating the component to use the 40 pixel size and the design, but I could be wrong about that. I know Rich was working on that. So, I think it&#8217;s less having a default set and more having consistency across the settings. It&#8217;s a design quality of life. Because right now I think that settings page has been shifted around, but yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s what I get from the PR too, but it&#8217;s an additional attribute or a different component for the range control, because they need to keep it backwards compatible. So, what goes for the core range controls, the previous attributes and range control sizes are still in there, so it&#8217;s practically an enhancement there. But the core view is the new default, 40 pixel thing there.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s what I understood. But I might be wrong, I&#8217;ve been wrong before, so.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Same. Same. Been looking at too much stuff anyway.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>New API</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, sometimes you make it up as you go along, right? So, the next item is about the nested inner blocks. There&#8217;s a new API, or at least stabilizing existing API for default block, direct insert, and get direct insert block selectors, that were previously experimental, and it was hard to build on top of them. And one of the panelists that were on our past live Q&amp;A, Seth Rubenstein, stabilized those, as a first time contributor, stabilize those APIs. So he can also work on a separate PR, that he shared some code from their Pew Research work on quizzes with the core developers, with core. So, that&#8217;s really good that community developers also stabilize some of the APIs so they can continue on their quest of making the plug editor more versatile.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, I love seeing this, and Seth has been awesome to be driving stuff forward, with really practical use cases, and I think it&#8217;s a great example of using and extending Gutenberg and the core editor, and then also contributing back in a way that furthers it and is in line with the goals of this project. So, I think it&#8217;s really exciting and cool to see this moving along.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And they want to make some of the quiz code available as plugins, but you&#8217;re not supposed to put in plugins in the repo when you have experimental APIs in there. So yeah, that&#8217;s where this work also comes in, so it&#8217;s really important to make this all work in stable conditions.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Bug Fixes</strong></h3>\n\n\n\n<p>The next part is for patterns and alternative grid layout to improve keyboard accessibility. That&#8217;s one of the accessibility improvements that you were talking about before.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, as we&#8217;ve talked about just generally adding new features, accessibility does need to keep up and we need to have it accessible for all folks. And so, this just makes a change to using a standard UL, with keyboard tab indexes, to try and improve keyboard accessibility in particular. And I&#8217;m nearly positive&#8230; Scroll down. Yeah, I was going to say, AFercia who is, that&#8217;s the GitHub username, he is sponsored by Yoast, did a great job reviewing this, and to the point that Alex Stein was like, &#8220;This looks good to me.&#8221; And so, it&#8217;s another great example of showing the back and forth between the teams, but I also would love to get to the point where this is done by default and not caught later. So, it&#8217;s great to see the collaboration and to see this being done. And I know the accessibility team is always looking for more help, so it&#8217;s just great to see the back and forth and it is back forwarded to the release.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: To 6.3, yeah. Yeah. Yeah, I&#8217;m really glad to see Andrea coming back to the accessibility team. He did take a break from working on the accessibility team, but I think he found quite a few contributors now really digging into Gutenberg. So he felt a little lonely about three or four years ago, before the pandemic definitely, and so I&#8217;m glad he&#8217;s contributing back again on the team. And sponsored by Yoast, just to mention that once in a while. Great. The next part, yeah, so there is a fix to apply text color selection to link color if link color isn&#8217;t active. That has been a long-standing issue with the block editor, that people who changed the text color on the paragraph didn&#8217;t get the same color also for the link color and needed to change that separately.</p>\n\n\n\n<p>And some people, because it&#8217;s not a default control on the paragraph, just didn&#8217;t know about the link color and how to change it, and it really wanted to not make the changes and couldn&#8217;t dream up the new design. So, I&#8217;m really glad that that is now by default. Well, of course if you want to change the link color you can, but if you just change the text color in a paragraph, it automatically also changes the link color.</p>\n\n\n\n<p><em>Anne McCarthy</em>: And I want to call out, that that was part of an effort on a project board, which is a bit in the weeds, but the UX and Polish project board is a board within the Gutenberg project that is specifically for just super actionable issues, that are typically, quality of life, as the name suggest with Polish. And then user experience, so how can we make it just super intuitive? So, I just want to point that out, is the more you can write really targeted contained requests that are like, this is just a pain in the butt, I run through this a couple of times a week or something like that, it&#8217;s a great consideration for the UX and Polish board.</p>\n\n\n\n<p>I think there&#8217;s been maybe 80 items completed as a part of the UX and Polish board, which is kind of wild. And it&#8217;s something that I know a lot of folks keep an eye on, and it&#8217;s a great, if you&#8217;re a new developer and you want to get started, it&#8217;s also a great place to go and look at ways you can improve the project. So, I was excited to see that done as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Does it make sense to share the link to the project board in our show notes?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, let&#8217;s do it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; so all the developers can grab things on what they&#8217;re interested in, and see the progress on it? Or even just test some of the PRs that are available and see if they are doing what they&#8217;re supposed to do.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Performance</strong></h3>\n\n\n\n<p>Yeah. So, the next thing is add client-side pagination to the panel list, client-side means in your browser, so you don&#8217;t go back to the server to get the next pages of patterns. I think that&#8217;s definitely a quality of life improvement. And this also has been ported back.</p>\n\n\n\n<p><em>Anne McCarthy</em>: This is the fun time with Gutenberg releases, where it&#8217;s like, what&#8217;s backported?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: What&#8217;s not? It was cherry-picked for everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s synced with the core WordPress. Yeah, it doesn&#8217;t work. What&#8217;s backported? Yeah. What else? Do you want to talk about the work that&#8217;s done with the TinyMCE compatibility and the classic editor? Or the classic block in bigger projects?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. So, one of the things that&#8217;s fun about Gutenberg is there&#8217;s actually experiments you can turn on and off. And so right now, from what I&#8217;m seeing, is there&#8217;s an experiment for TinyMCE removal, basically to help with compatibility with the classic editor plugin, and other plugins that disable the block editor. So, previously an experiment was introduced to help with TinyMCE removal, and so they&#8217;re just trying to polish this to make sure that there aren&#8217;t any regressions or just weird edge cases, and make sure that it&#8217;s using the same filter for classic editor plugin is using.</p>\n\n\n\n<p>So, it&#8217;s not for a lot of folks who are, Gutenberg change log, who are Gutenberg forward, but I think it is important to consider when we think about broader adoption and folks still using the classic editor, work and thought is still put in there. I know sometimes that feedback bubbles up, but there are efforts underway to ensure that people who do want to disable it, it still works. But yeah, I would encourage folks to also just use blocks. But yeah, I would call this a maintenance task, something that is really to just plug in interoperability and make sure things still work as expected. And so, it&#8217;s something that might be not as glamorous and shiny, but it&#8217;s still important work to do as part of the wider WordPress ecosystem.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And definitely, because there is this backwards compatibility promise for WordPress, and not only for the classic editor, but also for the classic theme. So, keeping that in mind, when you move forward in a different direction that people are still using the current stuff quite extensively and successfully, so they&#8217;re not impaired by any changes that are done. But sometimes these things are strategic and need to have a broader attention span on it and just not that one single feature. Excellent. So, I&#8217;m really glad that there is somebody on it. Yeah.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Documentation</strong></h3>\n\n\n\n<p>The next thing is mostly just to say that the documentation has been updated for the layout architecture after some of the APIs were stabilized. So, they are now showing up in the documentation and they&#8217;re not labeled as private or as experimental. So, that is definitely also a good thing, because a lot of people are a little bit hesitant to use experimental APIs or features.</p>\n\n\n\n<p>So, every time you can stabilize them and update the documentation so people know about it, is a good thing, it&#8217;s a good day. What else do we find? Oh yeah, there is an interactive template for talking about the Interactivity API.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Tools</strong></h3>\n\n\n\n<p>So, we have this scaffolding tool called Create Block, which speeds up your block development quite a bit when you start out with a new one or with putting additional blocks into a plugin. And now, there is also a template to use the Interactivity API on the next block that you are trying to build, that you&#8217;re working on, so you don&#8217;t have to include all the Interactivity stuff, for lack of a better technical term. And hook it up to all your other files, so there&#8217;s a template there. And it&#8217;s available now with a command line command, so that is certainly something for those people that want to dive into the Interactivity API.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: And when we make stuff like that easier, it&#8217;s so exciting, so great to call out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah, I think the great block scaffolding tool actually has not gotten enough exposure into the developers, because it was so late when it came out, people tried to build blocks and then gave up quite a bit. But now, every course, every tutorial that comes out of WordPress education or for the developer block uses a great block scaffolding. We hope to get more people building blocks.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, I think we are through with the change log, that&#8217;s what we wanted to point out for 16.3.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>So, in active development, I think everybody, we talked about, just briefly about the phase three collaboration phase and all the posts that are there, we didn&#8217;t talk too much about it because WordPress 6.3 is such a big thing in front of us, the collaboration, we don&#8217;t know yet what&#8217;s going to be, but everyone&#8217;s excited, I think about the admin changes as well as the media library. And then, of course, the real time collaboration and the async collaboration, there&#8217;s a lot to come out. So, what are the next steps that we are going to see when people say, okay, some of us are still working on the Polish and UI changes for the site editor, and some of us are going to start and move over to the collaboration?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, I will say, I don&#8217;t anticipate to see any sort of real time collaboration added into 6.4. I think it&#8217;s such a short release cycle, so I just want to put that out there. I&#8217;m not seeing headwinds about that or momentum in that direction. But I do think that&#8217;ll give us lots of time to experiment, and I know Riad posted on Make Core about the realtime architecture, which is totally worth reading. And there&#8217;s also a GitHub issue, of course, it is a GitHub issue. But right now, the feedback that I&#8217;ve gotten and questions that I&#8217;ve gotten, since I run basically the phase two outreach program, the full site outreach program is, it&#8217;s, what outreach are we doing? What&#8217;s going to happen with that? Are you going to run one for that? There&#8217;s a lot of questions bubbling up, of what&#8217;s next.</p>\n\n\n\n<p>And right now, I will say, the focus remains on 6.3, but I would expect to see a lot of experimentation, a lot of stuff starting up. I have done some outreach to plugin authors, I&#8217;ve done related functionality like that. I&#8217;ve started talking to folks in a larger to medium to small publishing space and agencies and all that sort of stuff. But I encourage folks to stay tuned and as soon as something is ready, I planned, and I&#8217;m sure you planned, to shout it from the rooftops, try and get folks involved and figure out exactly how best to organize stuff. Because I think that is a big question is, these are such related but yet disparate initiatives, and I don&#8217;t think there&#8217;s necessarily an overarching, here is the next thing we&#8217;re doing. I think some folks, some individual contributors, are just kind of trying to explore and pave the path for now and see what we can learn, ahead of a more collective push, once 6.3 is out the door.</p>\n\n\n\n<p>But yeah, I expect things to be more experimental in the Gutenberg plugin, by the time 6.4 is released. And then 6.5 is when I am more anxious about what are we going to have in place and how can people help test. And so, right now, I encourage folks to comment on the post that Matias wrote, share your feedback, share your experiences. Are you a writer? Are you a journalist who&#8217;s had to work in collaborative situations? Talk about it, write your comments, what do you want to see? What do you like about other tools that have those kinds of features in place? What workflows does your team have?</p>\n\n\n\n<p>Yeah, I think there&#8217;s a plugin author who commented recently on a workflows post, after we had exchanged some emails, who works on a calendar. So, you have a calendar post coming up and you have workflows related to that. And he took the time to very kindly share his feedback. So, anything you can do there is super helpful, whether it&#8217;s your plugin or you&#8217;re a writer or you&#8217;re an organizational leader who has to manage this kind of stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s going to be real interesting. So, any feedback is really helpful in that. I just wanted to go back to what you said, okay, there&#8217;s not going to be a whole lot in 6.4 for phase three. I know there&#8217;s also quite a few things that are residual from phase two, contributors are aiming to get the funds API and the fund library into core, together with the typography management system. We talked about the Interactivity API, there&#8217;s certainly some front fund hydration kind of tools. We&#8217;re still waiting for the table of content block to be stabilized, and the time to read block, is something that is definitely on the list. And I&#8217;m really excited to see what&#8217;s coming as a default theme for 2024. And of course, all the publishing that goes into phase two interfaces and workflows for the site editor. Yeah, the default theme. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: There&#8217;s so much already slated for 6.4.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And then your central…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Provisions and templates and template parts, yeah, we could rattle off a bunch of stuff, let&#8217;s leave it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And we already know there&#8217;s stuff in there, so Beta 1 is September 26th, that&#8217;s just eight weeks away. And that&#8217;s kind of interesting to see how short of a cycle we are going to have, but we won&#8217;t hit US big holidays, like Thanksgiving, it will be out before Thanksgiving, it will be out before Christmas, and nobody goes into a Christmas year-end sale with a changed WordPress. So, I think it&#8217;s a good thing for the community, but it&#8217;s going to be hard to make it a splashy new feature kind of thing, when you only have eight weeks to develop. And it&#8217;s-</p>\n\n\n\n<p><em>Anne McCarthy</em>: It&#8217;s tight.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. But then Josepha started a wishlist post. We got quite a few comments there, and it&#8217;s still open until August 15th. She also made clear that it&#8217;s a wishlist, it&#8217;s not everything that&#8217;s going to be on there. It&#8217;s going to come into 6.4, but I think the jury is still out which part will be. If there is already a track ticket or a Gutenberg PR or issue, the chances might be going in, but a global, yeah, this is my wishlist kind of thing, it probably won&#8217;t get that attention. So, August 15th, that&#8217;s just before the community summit and WordCamp US. We will hopefully have, after WordCamp US, have a roadmap post, like you did for 6.3. Are you planning to doing something like that?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes, I am. It is on my to-do list, I think for the week after, maybe August 14th or something like that, to start compiling stuff and figuring out what we can write up. Because yeah, that is an important thing to get out, especially with a shorter release cycle.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it&#8217;s going to be interesting to see, it&#8217;s the underrepresented gender lead release. The last one was 5.6 and now we are 6.4, two years later, three years later. So, there are some awesome people on the release team, so I&#8217;m really looking forward to working with you and so many other, 40 on the direct release team or on the cohort, so it&#8217;s a great group of women/non-binary people working on the release.&nbsp;</p>\n\n\n\n<p>So, we are at the end of the show, Anne, it was wonderful to talk to you and you sharing all your knowledge&#8230; Not all your knowledge, we would be here another 10 hours.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: The highlights.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The highlights of the most immediate thoughts in the show. It was wonderful to have you, is there anything that you want our listeners to be aware of beyond what we talked about today, that we didn&#8217;t touch upon yet?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, gosh. No, I don&#8217;t think so. I think the only thing that I&#8217;m noodling on is the next call for testing for the outreach program, and how we can get some feedback and get it going for 6.4, and just how 6.3 lands. So, stay tuned for that, if you&#8217;re not part of the FSE Outreach Program, it is still kicking, it&#8217;s still going over three years on.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s wonderful.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I really love that, how that turned out. And together, more people involved in testing themes, and no code and code people as well. So, is there a chance that you&#8217;re going to remove the experiment on that particular channel too?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, gosh. I know, it&#8217;s so funny, I think it&#8217;s called FSE Outreach Experiment. Yeah, which is funny, because it&#8217;s like, how long can the experiment go for? We&#8217;re on very scientific terms right now, but yeah, no, we should remove it. I think I just referenced it everywhere, as FSE Outreach Experiment, so I&#8217;ve been nervous about getting rid of it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, okay. Yeah, I can see it.</p>\n\n\n\n<p><em>Anne McCarthy</em>: And FSE is also an old term&#8230; It&#8217;s just kind of a weird snapshot in time. But yeah, we&#8217;ll see.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, well, it was wonderful to have you. If people want to get in touch with you, would be through the channel FSE Outreach Experiments?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, that&#8217;s probably the easiest. I&#8217;m @annezazu on Make Slack, and then I have a site, <a href=\"https://nomad.blog/\">Nomad.blog</a>. I&#8217;m on LinkedIn, but otherwise, not really typically on any social media. So not on X, or whatever they&#8217;re calling it, the kids are calling it these days. I don&#8217;t know how you even refer to that anymore.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s now a Boomers network, right? All right, well, thank you so much for being here, and we are going on holiday, the next recording will be August 25th and we will have Ellen Bauer.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, amazing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230;lead for design, or co-lead, on the design release team for 6.4. And we&#8217;re going to talk about their work on block themes, and of course the next two Gutenberg releases, Gutenberg 16.4 and 16.5. So, stay tuned for the next one. And there&#8217;s always, dear listeners, the show notes will be published on gutenbergtimes.com/podcast, and if you have questions as suggestions or news you want us to cover, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. And that&#8217;s it for me, I wish everybody a great summer, and I will be back end of August. Take care.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Amazing. Thank you for having me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, bye-bye.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jul 2023 20:28:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Gutenberg Times: Patterns, Block Styles and Slotfills—Weekend Edition #263\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://gutenbergtimes.com/patterns-block-styles-and-slotfills-weekend-edition-263/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14894:\"<p>Howdy, </p>\n\n\n\n<p>One more week, and I will start my Summer vacation. It&#8217;ll be a mixture between, pursuing neglected passing projects, giving family support, birthday celebrations and home improvement projects. My husband and I will join my in-laws  (MIL + SIL) on a river-cruise on the Danube and visit new places and revisit familiar places. </p>\n\n\n\n<p>The last touches on the WordPress 6.3 release are happening. If you haven&#8217;t yet, check out all the information that&#8217;s out there, and you find in the last two weekend editions. </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-3\">WordPress 6.3</a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-gutenberg-16-3\">Gutenberg 16.3 </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-3\">WordPress 6.3</h3>\n\n\n\n<p>On the WordPress News site, <strong>Anne McCarthy</strong> published <a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\"><strong>Synced Patterns: The Evolution of Reusable Blocks</strong></a>. You&#8217;ll learn everything there is to know about how the term &#8220;Synced patterns&#8221; is replacing the term &#8220;Reusable blocks&#8221;, and how this brings a unified creation experience for new pattern to your WordPress site with the new version. </p>\n\n\n\n<p>Many users have been applying reusable blocks to CTA, bios and compliance copy on their sites. Those will stay intact. Nothing changes here. The same mechanism you used to create reusable blocks, is also used to create synced patterns. It&#8217;s now also expanded to create standard patterns. A feature many site owners and designers have been waiting for. McCarthy and I also talked about this during our podcast recording. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide gt-separator\" />\n\n\n\n<p><strong>Matt Medeiros,</strong> publisher of WPMinute, asked in his latest episode: <br /><a href=\"https://thewpminute.com/will-wordpress-6-3-be-the-best-ever/\"><strong>Will WordPress 6.3 be the best ever?</strong></a> &#8220;There are a lot of exciting features coming to WordPress 6.3 which will set the tone for the next few years of our favorite CMS.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide gt-separator\" />\n\n\n\n<p><strong>Jonathan Bossenger </strong>provides a recording of his <a href=\"https://wordpress.tv/2023/07/28/testing-wordpress-6-3-developer-edition/\"><strong>Testing WordPress 6.3 – Developer Edition</strong></a> session. You&#8217;ll learn how to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"><em>WordPress Beta Tester plugin</em></a>, convert a local installation to 6.3 RC  for testing. Then use this setup to test it against a theme that is in active development, and then revert it back to WordPress 6.2.2. With WordPress 6.3 due on August 8, 2023, now would be a great time to help test the release candidate, as well as confirm that your plugins and themes are ready for the 6.3 release.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-gutenberg-16-3\">Gutenberg 16.3 </h3>\n\n\n\n<p><strong><a href=\"https://twitter.com/michaelburridge\">Michael Burridge</a></strong> led the latest Gutenberg release. It was mainly a maintenance release and comprised of a myriad of bug fixes for features slated for WordPress 6.3. Burridge highlighted in his release post <strong><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a>&nbsp;</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/#focus-mode-editing-for-patterns\">‘Focus mode’ editing for patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/#sticky-header-bar-on-patterns-page\">Sticky header bar on Patterns page</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/#rename-duplicate-and-delete-patterns\">Rename, duplicate, and delete patterns</a></li>\n</ul>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide gt-separator\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\">Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.</a> with Anne McCarthy as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n</div></div>\n\n\n\n<p><strong>Anne McCarthy</strong> and I talked about this release and, of course, also about WordPress 6.3 while recording the <strong>Gutenberg Changelog 87</strong>. It&#8217;s always a great joy to listen to Anne and take a deep dive into the Site editor with her. The episode is still at the editor, but will be available via your favorite podcast app over the weekend. My favorite Podcast app is <a href=\"https://pocketcasts.com/\">Pocket Casts</a> and I have been a paying subscriber for many years.</p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the release as well in her article: <a href=\"https://wptavern.com/gutenberg-16-3-adds-new-tools-for-patterns\"><strong>Gutenberg 16.3 Adds New Tools for Patterns</strong></a>. &#8220;Most notably, custom user patterns now have a dropdown menu for renaming, duplicating and deleting them. Patterns and template parts that come with themes will only have the “duplicate” option available since they cannot be deleted or renamed.&#8221; she wrote. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland </strong>released a new video with a <a href=\"https://www.youtube.com/watch?v=ckq0Wfu2xvs\"><strong>tons of WordPress News that you probably missed</strong></a> with a demo of the <a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\">Justin Tadlock&#8217;s Breadcrumbs Block</a>, the time to read block, and vertical text feature, and finally short appearances from Mike McAlister and Kevin Geary, with strong opinions on block themes specifically and Gutenberg as a whole. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>When users are new to WordPress, taxonomy is one of the concepts, that is harder to explain. <strong>Sarah Snow</strong> published a tutorial: <a href=\"https://learn.wordpress.org/tutorial/categories-vs-tags-whats-the-difference/\"><strong>Categories vs. Tags: What’s the difference?</strong></a> on the Learn.WordPress site. She shows you how to use them and that they are good for SEO juice and enhances content discovery for your readers. And  never have posts &#8220;uncategorized&#8221; again. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>Last week, <strong>Justin Tadlock</strong> published <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">part 1</a> of his Beyond Block Styles series. In part 2 he walks you through how to build custom styles for the core Separator Block.  <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\"><strong>Beyond block styles, part 2: building a custom style for the Separator block</strong></a>. It&#8217;s a deep dive into the inner workings of creating block styles for core blocks. You would need to have a certain set-up in place to follow along, and Tadlock takes you by the hand on <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">using the WordPress scripts package with themes</a>. I can hardly wait for the third part. I probably see first drafts next week. </p>\n\n\n\n<img />\n\n\n\n<p class=\"has-light-background-background-color has-background\">Oh, and while I have you: Are you a developer with a topic idea that you would like to share with the community? How about publishing it <strong>WordPress Developer Blog?</strong> Read the&nbsp;<a href=\"https://developer.wordpress.org/news/tips-and-guidelines-for-writers/\">tips and guidelines</a>&nbsp;and find out&nbsp;<a href=\"https://developer.wordpress.org/news/how-to-contribute/\">how you can contribute</a>. Our next monthly meeting will be on August 3rd, 2023 at 13:00 UTC in the WP Slack <a href=\"https://wordpress.slack.com/archives/C03RL47B3S8\">#core-dev-blog</a> channel. Or just DM me on Slack @bph and we&#8217;ll set up a talk. </p>\n\n\n\n<p>If you are a novice to working with NodeJS or npm, <strong>Jonathan Bossenger </strong>has a tutorial for you on Learn.WordPress: <a href=\"https://learn.wordpress.org/tutorial/installing-node-js-and-npm-for-local-wordpress-development/\"><strong>Installing Node.js and npm for local WordPress development</strong></a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In his live coding session on twitch, <strong>Ryan Welcher</strong> covered &#8211;  it seems &#8211; his most favorite topic: <strong><a href=\"https://www.twitch.tv/videos/1883051136\">Using custom SlotFill to extend a codebase</a>,</strong> using is ever evolving Advanced Query Loop plugin and adding more settings to the plugin&#8217;s sidebar. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Michael Burridge</strong> and <strong>Justin Tadlock </strong>presented at this month&#8217;s <a href=\"https://wordpress.tv/2023/07/26/wordpress-developer-hours-styling-blocks-july-2023/\"><strong>Developer Hours about Styling Blocks.</strong></a> The recording is available on WordPress TV. The panel talked about CSS custom properties (also known as CSS variables). You learn how to leverage them in custom blocks to give users more control over the styling and presentation of their sites.</p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CCO</a>&nbsp;licensed&nbsp;<a href=\"https://wordpress.org/photos/photo/382642d6b2/\">photo</a>&nbsp;by&nbsp;<a href=\"https://wordpress.org/photos/author/lanche86/\">lanche86</a>&nbsp;from the&nbsp;<a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jul 2023 09:34:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: Ninja Forms Version 3.6.26 Patches Multiple High Severity Security Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/ninja-forms-version-3-6-26-patches-multiple-high-severity-security-vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1893:\"<p>If you use the <a href=\"https://wordpress.org/plugins/ninja-forms\">Ninja Forms</a> plugin and your sites aren&#8217;t set to get automatic plugin updates, add a round of updates to your weekend plans. Patchstack is <a href=\"https://patchstack.com/articles/multiple-high-severity-vulnerabilities-in-ninja-forms-plugin/\">reporting multiple high severity security vulnerabilities</a> in the plugin, including the following:</p>\n\n\n\n<ul>\n<li>a POST-based reflected XSS (7.6 CVSS 3.1 score)</li>\n\n\n\n<li>a broken access control on form submissions export feature that allows Subscriber and Contributor role users to export all of the Ninja Forms submissions on a WordPress site (7.6 CVSS 3.1 score)</li>\n</ul>\n\n\n\n<p>Patchstack researchers discovered the vulnerabilities on June 22, 2023, and Ninja Forms patched them on July 4, 2023. The security advisory was publicly released on July 27, 2023. </p>\n\n\n\n<p>The plugin&#8217;s changelog for version 3.6.26 transparently identifies the security fixes included in the release:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>Security Enhancements:</em><br />* Prevent unauthorized download of submission<br />* Prevent scripts in dashboard field labels; responsibly reported by Sayandeep Dutta<br />* Prevent front-facing label scripts; responsibly reported by Jonathon Zamora &amp; WordPress.org<br />* Prevent excess extra data through automated form submission<br />* Prevent override access where not permitted</p>\n</blockquote>\n\n\n\n<p>Ninja Forms is used on more than 800,000 WordPress sites. The majority of the plugin&#8217;s users are on version 3.6.x (73.6%) but WordPress.org doesn&#8217;t offer a more detailed breakdown of minor versions, so it&#8217;s not clear how many are still vulnerable. Ninja Forms users are recommended to patch their sites immediately. At this time, the vulnerabilities are not known to have been exploited.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2023 22:11:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WPTavern: WordPress Launches Slack/Matrix Bridge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147271\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wptavern.com/wordpress-launches-slack-matrix-bridge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3144:\"<p>WordPress meta contributors have just logged an important milestone in their efforts to <a href=\"https://wptavern.com/wordpress-project-to-evaluate-replacing-slack-with-matrix-open-source-chat\">explore replacing Slack communication with Matrix</a>, an open source federated chat system. The team hosted a meeting on the Meta Slack channel and the corresponding #meta:community.wordpress.org Matrix room simultaneously, enabled by the project&#8217;s <a href=\"https://make.wordpress.org/meta/2023/07/20/matrix-chat-summary-july-20-2023/\">new Slack/Matrix bridge</a>.</p>\n\n\n\n<p>The bridge allows users to follow the chat and participate from either Matrix or Slack, with messages showing up in real-time. It&#8217;s a tool that will make the transition easier as the WordPress project moves towards replacing Slack. The team is still in the process of importing the history for channels but the bridges are already in place for all public Slack channels/Matrix rooms. </p>\n\n\n\n<p>DM&#8217;s do not work over the bridge, although they work between Matrix users. The bridge doesn&#8217;t have access to anything that is private, and the historic data import into Matrix will only apply to public Slack channels. DMs and private channel history will not be ported over.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1213\" height=\"996\" />Meta contributor meeting inside Chatrix instance with room switcher disabled \n\n\n\n<p>The Matrix team has created a Gutenberg block that embeds a Matrix client called <a href=\"https://wordpress.org/plugins/chatrix/\">Chatrix</a>, which can be added to any WordPress page/post or P2 blog, as shown in the screenshot above. This example can be accessed at <a href=\"https://make.wordpress.org/meta/chat/\">https://make.wordpress.org/meta/chat/</a>. WordPress.org users can sign in with SSO inside the block and authorize their accounts to connect:</p>\n\n\n\n<img width=\"465\" height=\"500\" />\n\n\n\n<p>Now that the Matrix server is live at <a rel=\"noreferrer noopener\" href=\"https://community.wordpress.org/\" target=\"_blank\">community.wordpress.org</a>, WordPress users who want to attend team meetings or join rooms via Matrix can now do so using their choice of Matrix clients that support SSO. Logging in uses the same credentials as the WordPress.org account.</p>\n\n\n\n<p>&#8220;Compared to Slack this means a vastly simplified onboarding process,&#8221; Automattic-sponsored contributor Alex Kirk said. &#8220;Instead of waiting for an e-mail arriving at a special e-mail address, you set the server in your Matrix client to <code>community.wordpress.org</code> and click &#8216;Login with WordPress.org&#8217; (the name of that button might vary by client).&#8221;</p>\n\n\n\n<p>As the channels&#8217; history gets migrated over, Kirk said WordPress users will be automatically invited to rooms on Matrix that they have already joined from the Slack side. The team is planning to make more wide-scale public announcements after the Slack/Matrix bridge has demonstrated that it is running stable.</p>\n\n\n\n<p><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://app.slack.com/services/B05A8FX9LBD\"></a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2023 21:31:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Ottawa Can Bring It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=92586\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2023/07/ottawa-can-bring-it/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:470:\"<p>Ottawa reminds me a lot of Houston. A city that is a microcosm of Canada&#8217;s diversity and vibrance.</p>\n\n\n\n<p>When you visit Ottawa, I&#8217;d recommend checking out <a href=\"https://aiana.ca/\">Aiana Restaurant Collective</a> (powered by WordPress, natch!) and <a href=\"https://www.stolengoodscocktailbar.com/\">Stolen Goods Cocktail Bar</a> to see craftspeople operating at the top of their game. <a href=\"https://dineriviera.com/\">Riviera</a> was also nice.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2023 02:52:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: ClassicPress Community Considers Re-forking WooCommerce for Classic Commerce v2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/classicpress-community-considers-re-forking-woocommerce-for-classic-commerce-v2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4802:\"<p><a href=\"https://www.classicpress.net/\">ClassicPress</a>, the fork that has been keeping WordPress 4.9 on life support for those who don&#8217;t want to use the block editor, will soon be moving into version 2.0 after the community <a href=\"https://wptavern.com/classicpress-community-votes-to-re-fork-wordpress\">voted to re-fork a newer version of WordPress</a> (6.x) to keep moving forward. <a href=\"https://www.classicpress.net/classicpress-v1-6-0-is-out/\">Version 1.6.0</a> was released a few weeks ago as the last minor release before version 2.0.</p>\n\n\n\n<p>ClassicPress contributors are <a href=\"https://forums.classicpress.net/t/classiccommerce-v2/4860\">discussing the future of Classic Commerce</a>, which is a <a href=\"https://classiccommerce.cc/\">fork of WooCommerce 3.5.3</a> created to provide a reliable e-commerce solution for ClassicPress users. The community is now bracing for the inevitable compatibility issues introduced by version 2.0 that will require a massive undertaking to resolve. </p>\n\n\n\n<p>In a forum thread seeking community input, @shimmy, an IT solutions business owner with an interest in supporting a long term e-commerce solution, proposed the following options for Classic Commerce&#8217;s future: </p>\n\n\n\n<ul>\n<li>Re-Fork Woo-Current</li>\n\n\n\n<li>Re-Fork Woo-Previous</li>\n\n\n\n<li>Fork a different eCommerce solution</li>\n\n\n\n<li>Migrate CCv1 to current</li>\n\n\n\n<li>Complete Rewrite</li>\n</ul>\n\n\n\n<p>&#8220;We can talk about re-forking, using something that works or asking ourselves: are we ready to really fork and support it on our own developing it in a way it works in ClassicPress or do we fork it and continue to patch it every time it doesn’t work because blocks or just keep it frozen?&#8221; Elisabetta Carrara said.</p>\n\n\n\n<p>After some discussion multiple participants in the conversation were in agreement that forking the latest version of WooCommerce to make it work with ClassicPress is not a viable option.</p>\n\n\n\n<p>ClassicPress director Viktor Nagornyy suggested exploring a refork similar to the method used for ClassicPress 2.0.</p>\n\n\n\n<p>&#8220;With CP v2.0, we didn’t take WP v6.2 and rip out blocks, FSE, and React,&#8221; he said. &#8220;<a href=\"https://forums.classicpress.net/u/mattyrob\">@MattyRob</a> merged <code>develop</code> branch with CP v1, and worked his way through all the files to resolve merge conflicts. That was a lot of work, and he did a great job. WooCommerce and Classic Commerce are plugins, so I assume they have fewer files than WP/CP core.</p>\n\n\n\n<p>&#8220;This type of &#8216;merge-fork&#8217; could be a viable option for CC to save time and effort.&#8221; </p>\n\n\n\n<p>@shimmy, who would be leading this effort, said he is leaning toward this approach.</p>\n\n\n\n<p>&#8220;I think this provides a more natural upgrade path and to some degree backwards compatibility,&#8221; he said. &#8220;At some point in the course of merge-fork WC plugins will no longer be compatible with CC; which is fine because I think that CC should have it’s own plugin &#8216;bazaar.&#8217; This ensures compatibility with CC; if you need a feature then it should be a filtered result with what you already have in place.&#8221;</p>\n\n\n\n<p>Nagornyy also encouraged a nascent plugin ecosystem to grow up around these forks to provide additional features. Although the WooCommerce plugin ecosystem has thousands of options for extending stores, they are not guaranteed to be compatible with forks built on older versions of WordPress and WooCommerce.</p>\n\n\n\n<p>&#8220;While the core CC is free, I encourage plugin developers to consider developing paid plugins for CC to ensure they get paid for their time and effort,&#8221;  Nagornyy said. &#8220;It only strengthens CP and CC knowing premium, supported plugins are available. For e-commerce, the two profitable (and critically important) categories of plugins are payment gateways and shipping integrations.&#8221;</p>\n\n\n\n<p>With the major <a href=\"https://wptavern.com/wordpress-plans-ambitious-admin-ui-revamp-with-design-system-galvanizing-broad-support-from-the-developer-community\">changes coming to the WordPress admin in Phase 3</a> of the Gutenberg project, maintaining these forks will continue to be an uphill slog, as fewer plugins from the wider ecosystem will remain compatible with ClassicPress. </p>\n\n\n\n<p>Maintaining payment gateways and shipping integrations for compatibility with these forks is also going to be challenging, as this discussion indicates that the community doesn&#8217;t have many experienced e-commerce developers who are eager to step up and donate their time to this project.  If Classic Commerce cannot deliver on the ambitious &#8216;merge-fork&#8217; option, users may need to look towards integrating external e-commerce solutions. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 22:16:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Post Status: WordPress 6.3 RC2 • Synced Patterns • Internationalization • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/wordpress-6-3-rc2-synced-patterns-internationalization-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25140:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 25, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">We&#8217;re under two weeks away from WordPress 6.3 release. Have you started testing? <br /><br />Big changes are envisioned for the Media Library, Admin Dashboard, and more. You have an opportunity NOW to share ideas. What considerations do we need to account for? Read the Phase 3 post from Matías and share your feedback in the comments. <br /><br />No longer will you find Reusable Blocks. In WordPress 6.3, you&#8217;ll now find Synched Patterns. Read on to learn why the name has been changed. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fe_gitMerge kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Reusable Blocks, Phase 3, i18N</h2><p class=\"kt-blocks-info-box-text\"><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a><br /><br />3&#x20e3; <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f310.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f501.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">WordPress 6.3 Live Product Demo – Highlights &amp; Recording</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-22\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-27\">\n<div class=\"wp-block-column is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-25\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-july-12-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/a-week-in-core-july-24-2023/\">A Week in Core – July 24, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Beyond block styles, part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\">Make your site’s typography make a statement</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/whats-new-for-developers-july-2023/\">What’s new for developers? (July 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\">How to modify theme.json data using server-side filters</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/core-editor-chat-summary-26th-july-2023/\">Core Editor chat summary: 26th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/dev-chat-agenda-july-26-2023/\">Dev Chat agenda, July 26, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/24/online-monthly-docs-team-contributor-day-july-25-2023/\">Online monthly Docs Team Contributor Day July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/documentation-team-update-july-24-2023/\">Documentation Team Update – July 24, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/hosting-team-meeting-agenda-2023-07-26/\">Hosting Team meeting agenda 2023-07-26</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/07/20/matrix-chat-summary-july-20-2023/\">Matrix chat Summary – July 20, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/26/mobile-team-update-july-25th/\">Mobile Team Update – July 25th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/25/community-meeting-recap-2023-07-25/\">Community Meeting Recap (2023-07-25)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/24/last-week-openverse-2023-07-17-2023-07-24/\">A week in Openverse: 2023-07-17 – 2023-07-24</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/performance-chat-summary-25-july-2023/\">Performance Chat Summary: 25 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/plugin-review-team-24-jul-2023/\">Plugin Review Team: 24 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/26/agenda-weekly-polyglots-chat-july-26-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – July 26, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/07/wp-contributor-mentorship-program-support-team-onboarding-meeting/\">WP Contributor Mentorship Program: Support Team Onboarding Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/agenda-for-july-27th-support-meeting-2/\">Agenda for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/27/sustainability-chat-agenda-july-28-2023/\">Sustainability Chat Agenda, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/test-team-update-24-july-2023/\">Test Team Update: 24 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/26/themes-team-meeting-notes-july-25-2023/\">Themes Team Meeting Notes – July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/25/themes-team-update-july-25-2023/\">Themes team update July 25, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/07/26/training-team-meeting-recap-25th-july-2023/\">Training Team Meeting Recap – 25th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/25/call-for-volunteers-to-help-with-6-3-learn-wordpress-updates/\">Call for Volunteers to help with 6.3 Learn WordPress updates</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/improving-website-performance-with-caching/\">Improving website performance with caching</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/installing-node-js-and-npm-for-local-wordpress-development/\">Installing Node.js and npm for local WordPress development</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-exploring-some-of-the-new-6-3-wordpress-features\">APAC: Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=exploring-some-of-the-new-6-3-wordpress-features\">Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=onboarding-to-test-team\">Onboarding to Test Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3-developer-edition\">Testing WordPress 6.3 – Developer edition</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-3\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-2\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=mentorship-program-introduction-to-the-wordpress-open-source-project\">Mentorship Program: Introduction to the WordPress Open Source Project</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-4\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-3\">What is the Domain Name System?</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-malaysia-2023-is-looking-for-speakers-and-sponsors/\">WordCamp Malaysia 2023 is Looking for Speakers and Sponsors</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-masaka-2023-celebrating-inclusion-diversity-and-innovation-with-wordpress-in-ugandas-pearl-of-africa/\">WordCamp Masaka 2023: Celebrating Inclusion, Diversity, and Innovation with WordPress in Uganda’s Pearl of Africa!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 22:03:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WordPress.org blog: Synced Patterns: The Evolution of Reusable Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4355:\"<p>Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released on August 8th, you will be able to arrange blocks in unlimited ways and save them as patterns for use throughout your site, directly within the editing experience. You can also specify whether to sync your patterns, so that one change applies to all parts of your site, or to keep them unsynced, so you can customize each instance.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Create your own patterns</h2>\n\n\n\n<p>The ability to create your own patterns, on top of using the ones bundled into each WordPress release, opens up a world of possibilities. Need to repeat the same contact information across your site and keep it up to date? Create a synced pattern with all the details, and say goodbye to repeating yourself, with the ability to quickly insert the synced pattern wherever you need it. If you find yourself creating various banners for your site and want them to have the same layout with unique content, creating an unsynced pattern speeds up your workflow and ensures a level of consistency in approach. While themes and plugins have been able to offer patterns to users and <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/#utilizing-patterns\">curate the experience</a>, this update allows agencies and site builders to do the same for their clients, directly in the site building process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Dig into the details</h2>\n\n\n\n<p>Any previously made Reusable blocks will continue to function as they do now, just under the new Synced pattern name. To help adjust to these changes, a few contextual notices will be placed throughout the interface. Specifically, the menu item in the creation flow will show as “Create pattern/reusable block” until the prompt describing the switch is dismissed in one of the various locations, including the naming and syncing modal:&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>For folks using block themes, all patterns will be listed alongside template parts in the Site Editor &gt; Patterns section, where you can enter a focused editing mode to make changes. For Classic themes, the prior reusable block management page will now house patterns in a list, similar to the Posts &gt; All Posts view.</p>\n\n\n\n<img width=\"1024\" height=\"590\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&ssl=1\" alt=\"Patterns section of the WordPress Site Editor with My Patterns selected\" class=\"wp-image-15569\" />\n\n\n\n<p>For a complete overview of patterns on your site, all patterns provided by themes and plugins will be shown in this section but without the option to edit directly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Go further</h2>\n\n\n\n<p>With the ability to create your own patterns baked into the creation experience, remember that you can copy the patterns available in the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a> and <a href=\"https://wordpress.org/patterns/about/\">contribute back</a>, an excellent way to democratize design for every WordPress user and the web.</p>\n\n\n\n<p><em>For more exciting features coming to patterns in WordPress 6.3, </em><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\"><em>read on in the Advancing the Power of Patterns post</em></a><em>. Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>Chloé Bringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>Jonathan Pantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/chanthaboune/\"><em>Josepha</em></a><em>, </em><a href=\"https://profiles.wordpress.org/kristastevens/\"><em>Krista Stevens</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>Nicholas Garofalo</em></a><em>, <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 14:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Do The Woo Community: Building Your Agency Stack with Judd Dunagan and Carlos Caneja\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://dothewoo.io/building-your-agency-stack-with-judd-dunagan-and-carlos-caneja/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:445:\"<p>Judd from Bright Vessel and Carlos from Britecode share insights and experience in building their WooCommerce Agency stack.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/building-your-agency-stack-with-judd-dunagan-and-carlos-caneja/\">Building Your Agency Stack with Judd Dunagan and Carlos Caneja</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 08:44:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: Gutenberg 16.3 Adds New Tools for Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147209\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/gutenberg-16-3-adds-new-tools-for-patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2249:\"<p><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">Gutenberg 16.3</a> was released today as a maintenance release but includes several new tools that make pattern management smoother and easier for users. Most notably, custom user patterns now have a dropdown menu for renaming, duplicating and deleting them. Patterns and template parts that come with themes will only have the &#8220;duplicate&#8221; option available since they cannot be deleted or renamed. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">Gutenberg 16.3 release post</a>\n\n\n\n<p>Gutenberg 16.3 adds a sticky header bar on the Patterns page. It also brings the &#8220;focus mode&#8221; to patterns, which is already available for template parts in the Site Editor but not available when editing patterns. Users may not notice but it provides more a consistent editing interface.</p>\n\n\n\n<p>Those who have been keenly following the evolution of the Patterns page will notice that the &#8220;Theme patterns&#8221; heading has been <a href=\"https://github.com/WordPress/gutenberg/pull/52570\">removed</a> and the pattern categories rearranged. Theme and plugin patterns now appear above template parts.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1270\" height=\"1158\" />image credit: <a href=\"https://github.com/WordPress/gutenberg/pull/52570\">Gutenberg PR #52570</a>\n\n\n\n<p>The icon for synced patterns isn&#8217;t self evident and some users may need more context. <a href=\"https://github.com/WordPress/gutenberg/pull/52458\">A new tooltip</a> identifies synced patterns as those for which edits will apply anywhere the pattern is used.</p>\n\n\n\n<p>Gutenberg 16.3 includes more than two dozen pattern interface-related fixes, among other editor bug fixes. If you are using and managing patterns frequently, having the Gutenberg plugin installed will enable a better experience with this interface until these updates make their way into core WordPress. Check out the <a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">release post</a> for a full list of all the changes and fixes in 16.3.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 02:49:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress 6.3 RC2 Released, Watch the Live Product Demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147173\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/wordpress-6-3-rc2-released-watch-the-live-product-demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4088:\"<p><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 RC2</a> has been released and is ready for community testing. Since RC1 landed a week ago, 15 changes have come in from the <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=07%2F18%2F2023..07%2F25%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>, including bug fixes for footnotes, internationalization fixes, a missing command for opening the distraction free in the Site Editor, and a few other issues. </p>\n\n\n\n<p>This release also brings in <a href=\"https://core.trac.wordpress.org/ticket/58067\">work completing the About page</a> and adds a &#8220;Get Involved&#8221; section, closing a 10-year old <a href=\"https://core.trac.wordpress.org/ticket/23348\">ticket</a> that suggested adding a &#8220;Contribute&#8221; tab to the About page.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1367\" height=\"2560\" />\n\n\n\n<p>The new Get Involved page features both code-based and no-code contribution opportunities with a link to WordPress&#8217; contributor teams.</p>\n\n\n\n<p>The video of the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">WordPress 6.3 Live Product Demo</a> has been published so anyone who was not able to attend can get a preview of what is coming in the next release. Automattic-sponsored contributors <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> hosted the demo, showing users how to use the new command palette to zip around the editor and manage settings views. They also guide viewers through browsing and editing pages within the Site Editor, managing synced patterns (formerly called Reusable Blocks), and showcased various new blocks and design tools.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Check out the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">highlights post</a> for all the links to features referenced in the demo and the Q&amp;A portion of the broadcast.</p>\n\n\n\n<p>For those interested in performance improvements coming in 6.3, an upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is happening tomorrow <strong><strong><a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20230727T1500\"><abbr title=\"2023-07-27T15:00:00+00:00\">Thursday, July 27, 2023 at 11:00 AM EDT</abbr></a>. </strong></strong>Participants can check the <a href=\"https://wordpress.slack.com/archives/C02KGN5K076\">#core-performance</a> Slack channel for the Zoom link before the event. Team leads will cover highlights from the 170+ performance improvements included in 6.3 and will discuss future improvements for 6.4. </p>\n\n\n\n<p>WordPress&#8217; Training team is <a href=\"https://make.wordpress.org/training/2023/07/25/call-for-volunteers-to-help-with-6-3-learn-wordpress-updates/\">calling for volunteers</a> to help with updating and revising existing Learn WordPress resources ahead of the 6.3 release. The team has created a <a href=\"https://github.com/WordPress/Learn/labels/6.3\">board</a> on their GitHub repository which highlights high priority tasks. </p>\n\n\n\n<p>WordPress 6.3 RC3 is expected to be released on August 1, and the general release is scheduled for August 8, less than two weeks away. There is still time to find and report some bugs. One easy way is to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a local testing site or use a quick throwaway site from services like InstaWP or TasteWP. <a href=\"https://core.trac.wordpress.org/newticket\">Bugs can be reported on Trac</a> or via the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta section</a> of the support forums.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2023 19:19:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: #85 – Giulia Laco on the Importance of Typography for Your Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=147116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/podcast/85-giulia-laco-on-the-importance-of-typography-for-your-websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51871:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case the importance of typography for your websites.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash Jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Giulia Laco. Giulia is a web designer and developer who has been working on the web since the mid 1990s. Her primary interests are web typography and font design. In addition to project development, she&#8217;s a consultant and a trainer, mostly working with CSS, web fonts and web typography.</p>\n\n\n\n<p>This is the last of our podcasts from WordCamp Europe, 2023. I spoke to Giulia in Athens because she had just finished her presentation entitled &#8220;typographic readability in theme design and development&#8221;.</p>\n\n\n\n<p>In this session, she explored how designers can assist with the readability of websites through careful consideration of the fonts they choose and why they choose them.</p>\n\n\n\n<p>It turns out there&#8217;s quite a lot to consider. And if you&#8217;ve not given this topic much thought in the past, you&#8217;ll perhaps learn something new. I certainly did.</p>\n\n\n\n<p>We begin the podcast talking through how, at the start of the web, we were making do with a limited range of tools to help us make typographic choices. There were no web fonts available, but that started to change around 2010. Now we have access to hundreds of fonts and need to be mindful that some fonts can pose readability challenges for some users of your website.</p>\n\n\n\n<p>Giulia talks about the fact that the manner in which we read has changed since the dawn of the internet. Many people now mostly consume small passages of text, which need to be considered in a different way to longer writing.</p>\n\n\n\n<p>Concentrating upon the letters in the Latin alphabet, we talk about the ways in which readers typically break up words into smaller units, and the fact that the way letters are shaped can make them easier to parse. There&#8217;s some technical language here, ligatures X-height, apertures, and more. Which tell us about the shaping and spacing of letters. Giulia explains the current state of research into how these characteristics of fonts can affect readability.</p>\n\n\n\n<p>We talk about whether or not there are fonts which are more readable than others. Is there a collection of fonts, which you can use and be confident that you&#8217;re going to make it easy for all users of your websites?</p>\n\n\n\n<p>Giulia talks about how designs need to consider the spaces into which the text is put. Most people have a proclivity for the order in which they view a page. And knowing about this path across the page can help your readers access the text.</p>\n\n\n\n<p>The width of the text is also important. You want people to be able to read from side to side without having to move their head. How does this work across different device sizes and what can be said about text, which runs right to left, or top to bottom?</p>\n\n\n\n<p>We round off the conversation with Giulia telling us where we can find out more, as well as some of the thought leaders in this space.</p>\n\n\n\n<p>It&#8217;s a fascinating conversation about a subject that often gets overlooked. Web designers, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Giulia Laco.</p>\n\n\n\n<p>I am joined on the podcast by Giulia Laco. Hello Giulia.</p>\n\n\n\n<p>[00:04:43] <strong>Giulia Laco:</strong> Hello.</p>\n\n\n\n<p>[00:04:43] <strong>Nathan Wrigley:</strong> It&#8217;s very nice to have you on. Giulia is joining me at WordCamp EU in Athens. It&#8217;s the last conversation that I&#8217;m recording, so very nice to have you on. You are going to be talking to us today about something that I genuinely didn&#8217;t know about.</p>\n\n\n\n<p>This was a really interesting topic to research from my point of view. You&#8217;re going to be talking to us a little bit about typography. That&#8217;s based upon a workshop that you did yesterday. How did it go?</p>\n\n\n\n<p>[00:05:12] <strong>Giulia Laco:</strong> I&#8217;m happy about that. I&#8217;m happy to hear that you are interested in typography as well.</p>\n\n\n\n<p>[00:05:17] <strong>Nathan Wrigley:</strong> Was it well attended? Did you get your information across? Did people engage with the topic?</p>\n\n\n\n<p>[00:05:22] <strong>Giulia Laco:</strong> I think so. I divided people in two groups, developers and designers. So to let them think about typography with the mentality of the others. So that was the point I was trying to have.</p>\n\n\n\n<p>[00:05:35] <strong>Nathan Wrigley:</strong> Well, the reason I wanted to talk to you was because when I was looking through the list of presentations and workshops, yours was really different, a topic that I genuinely hadn&#8217;t thought about in the way that you&#8217;ve made me think about it.</p>\n\n\n\n<p>Because whenever I think about typography, I am really just thinking about whether I like a font. So if I go to a website, I just make a quick judgment. Do I like that font? Do I not like that font? But there&#8217;s a lot more to it than that, which we&#8217;re going to get into. But can you just tell us why you&#8217;re interested in this? Do you have a history with working with type? Why are you so fascinated by typography?</p>\n\n\n\n<p>[00:06:17] <strong>Giulia Laco:</strong> Okay, well, maybe it&#8217;s because I&#8217;ve started making websites at the very beginning of the internet era. It was around, mid nineties. And we didn&#8217;t have the possibility to use web fonts of any kind on the web. We did what we could with very few tools. Whereas later on in 2009 or 10, we had this great possibility of using web fonts, and I started to get engaged with, with the typography. And that was the time when I was starting typography for the first time actually.</p>\n\n\n\n<p>[00:06:52] <strong>Nathan Wrigley:</strong> Are you interested in typography away from the internet? Are you interested in the way that type is presented in books and on paper?</p>\n\n\n\n<p>[00:07:00] <strong>Giulia Laco:</strong> Yes, everywhere. On menus as well.</p>\n\n\n\n<p>[00:07:03] <strong>Nathan Wrigley:</strong> Yeah, because when you actually turn your attention to typography, which is what I did after we booked this interview. Text is everywhere, and it&#8217;s really, really different wherever you look. So we are sitting in a room. There&#8217;s almost no text, but there&#8217;s a little bit of text behind you. It has a particular font.</p>\n\n\n\n<p>[00:07:22] <strong>Giulia Laco:</strong> Montserrat.</p>\n\n\n\n<p>[00:07:23] <strong>Nathan Wrigley:</strong> Montserrat probably, yeah. I&#8217;m looking at my computer. It has a font on it. I&#8217;ve just been downstairs, looked at a menu. It had three or four fonts on it. Wherever you look, there is text, and usually the typography has been thought about.</p>\n\n\n\n<p>But you were talking about typography from the point of view of how can be done better. How can be a problem for some people, and that I didn&#8217;t really realize. I knew that people would perhaps struggle to read text because it was too small, or there was a background color, which clashed with the color of the text. But I didn&#8217;t realize that the font itself could be a problem. So tell us how it can be a problem. How can some people struggle to read one font but not another?</p>\n\n\n\n<p>[00:08:08] <strong>Giulia Laco:</strong> Well, it&#8217;s a big question, because, there&#8217;s a lot of research about that, recent research on readability. Because very few people read a lot nowadays in each country. So a lot of countries are worried about that.</p>\n\n\n\n<p>So there are movements to let people read better by making some tools. And big companies like Adobe, Google are on this concern. They&#8217;re concerned about that. So they&#8217;re trying to study that subject. The Readability Consortium, a consortium from between these big companies and universities in America.</p>\n\n\n\n<p>And it&#8217;s working interdisciplinary. So with psychologists, typographers, graphic designers. And started to focus on what makes text legible. And what they are, as far as I know, they&#8217;re saying is that it&#8217;s different for everybody. So you test it.</p>\n\n\n\n<p>And so that&#8217;s why you need to make tools that help people adjust their texts when they read for long form reading, of course. Not for just a menu or, very few words you are going to read. And they&#8217;re trying to do those tools. And maybe it&#8217;s difficult for a user to know what they need.</p>\n\n\n\n<p>[00:09:30] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:09:30] <strong>Giulia Laco:</strong> So, they are working also with AI. Trying to have some patterns and, have some themes, let&#8217;s say. So that can adapt to very different kind of people. But they&#8217;re trying to reach that patterns by research, not by guessing. So that&#8217;s very intereting.</p>\n\n\n\n<p>[00:09:50] <strong>Nathan Wrigley:</strong> Yeah, really interesting. I mean, again, when I was researching this, it suddenly occurred to me that, I have children, they&#8217;re grown up largely now. But I remember when they came home from school, at the beginning, their homework was in child-friendly fonts. Let&#8217;s put it that way. Often it was something along the lines of comic sans something like that. And it didn&#8217;t occur to me at all at the time, I just thought, oh, well it&#8217;s a child-friendly font. It&#8217;s kind of round and it&#8217;s got, you know, there&#8217;s no hard edges.</p>\n\n\n\n<p>I just thought it&#8217;s just a pleasant thing to look at. But now that I&#8217;m thinking about it, it was probably an easier font for the child to begin to learn to read with. Because all of the letters were clear. There was no confusion between one letter and the other. You know, you couldn&#8217;t mistake the L for the I, for example. And I did wonder, you were saying that there&#8217;s less people reading than ever. If the typography is a, quotes, difficult font, it may be more difficult to begin learning to read. I don&#8217;t know if that&#8217;s something that you were trying to say there.</p>\n\n\n\n<p>[00:10:59] <strong>Giulia Laco:</strong> Well actually, when a child start reading has a very tough task. And helping that process is important. I remember seeing books in upper case letters only, it was meant to be simpler. But they started only to recognize only one kind of letters. In the Latin alphabet, we have upper case and lower case, and they&#8217;re very different because of their history.</p>\n\n\n\n<p>Uppercase letters comes from the engraved Latin letters. Whereas the small, lowercase, comes from calligraphy. So they&#8217;re very different origins,. And it&#8217;s not the same to learn lowercase a and a lowercase a. Recognizing them as the same letter, the same sound.</p>\n\n\n\n<p>And with sound is also difficult, especially in English, you have so much problem with sounds and letters.</p>\n\n\n\n<p>[00:11:57] <strong>Nathan Wrigley:</strong> Yeah. I think we have 44 sounds, but only 26 letters.</p>\n\n\n\n<p>[00:12:02] <strong>Giulia Laco:</strong> And the combination. When you use a letter and a sound, other languages are much more simpler on that respect.</p>\n\n\n\n<p>[00:12:09] <strong>Nathan Wrigley:</strong> Yeah again, remarkable. I&#8217;d never really given any thought to how different uppercase and lowercase are. But they don&#8217;t bear, in some cases they&#8217;re quite similar.</p>\n\n\n\n<p>[00:12:17] <strong>Giulia Laco:</strong> Yes.</p>\n\n\n\n<p>[00:12:18] <strong>Nathan Wrigley:</strong> So an l and a capital L, broadly the same. But something like an a, the capital letter A and the lowercase letter. They&#8217;re just utterly different, aren&#8217;t they? They&#8217;re really, really remarkably different. Oh, that&#8217;s fascinating. I hadn&#8217;t given any thought. So what makes text legible to a lot of people, or not legible to a lot of people? Are there any kind of guidelines around that?</p>\n\n\n\n<p>[00:12:41] <strong>Giulia Laco:</strong> Okay, I will distinguish between legibility and readability. Because, you have this distinction in English and it&#8217;s great. We don&#8217;t have it in Italian. I guess the legibility comes from lighting as we have for legibilita in Italian. And it&#8217;s something that has to do with decoding. So that&#8217;s something that has to do with the typeface.</p>\n\n\n\n<p>Whereas readability is something you want to read, you like to read something, you want to read. And not you&#8217;re just trying to decode things. So that&#8217;s a big difference, when you start to understand why a text is readable or not. I would say that trying to take a legible font means to have a font with certain characteristics.</p>\n\n\n\n<p>For example, it&#8217;s let&#8217;s say proved that a font with a higher X-height is more legible. I&#8217;m talking about running text, the body text for long reading experience. So X-height is basically the medium height of the lower case letters, based on the letter x, that&#8217;s why X-height, you see.</p>\n\n\n\n<p>And so for example, I don&#8217;t Helvetica has a higher X-height than Times New Roman, for example, if you compare it. And having a higher X-height is a typeface, be more readable.</p>\n\n\n\n<p>And another very important thing is with apertures. Apertures, how can I say, the white space inside the part of the letters that are open. Take a lowercase e in the lower part of the letter. You have this room. If it&#8217;s more closed, it&#8217;s less legible because it can be taken for an o for example, you see. So Helvetica, for example, is very well used, but it&#8217;s not legible as a body copy. Helvetica is wonderful for display type for titles, but not so well for body text.</p>\n\n\n\n<p>[00:14:42] <strong>Nathan Wrigley:</strong> So you are saying, so this X-height? So is typically the height of the letter x. So if I put an x next to the letter h, for example, it&#8217;s the height of the rounded bit of the letter h? </p>\n\n\n\n<p>[00:15:55] <strong>Giulia Laco:</strong> Yes, exactly.</p>\n\n\n\n<p>[00:14:57] <strong>Nathan Wrigley:</strong> Or it would be the height of the letter a? Or the rounded bit of the letter p? The more tall that bit is, the more legible it is for most people to read. I had no idea.</p>\n\n\n\n<p>[00:15:09] <strong>Giulia Laco:</strong> Well, it&#8217;s just one thing because, not only that, because it&#8217;s also how you set type. For example, if you have a large X-height, typeface and you set it with a very small space between the lines, the line height, the leading, they say in typography. You don&#8217;t take advantage of that highness, you see.</p>\n\n\n\n<p>[00:15:32] <strong>Nathan Wrigley:</strong> Okay. So if letters are squashed. If one line of letters is compressed, so line height.</p>\n\n\n\n<p>[00:15:37] <strong>Giulia Laco:</strong> Mm-hmm.</p>\n\n\n\n<p>[00:15:37] <strong>Nathan Wrigley:</strong> Is compressed up against another line of letters beneath it, that makes it more difficult to read because there&#8217;s just no room for the letters to breathe, There&#8217;s no gap. They&#8217;re all just squished together. Okay?</p>\n\n\n\n<p>[00:15:48] <strong>Giulia Laco:</strong> But you have to pay attention not to put too much line height. Otherwise you lose the next line when you jump from one line to the other, it&#8217;s too far and you can&#8217;t find it.</p>\n\n\n\n<p>[00:15:59] <strong>Nathan Wrigley:</strong> So this is the eyes ability to go from the end of one line and track, and immediately find the beginning the next line.</p>\n\n\n\n<p>[00:16:46] <strong>Giulia Laco:</strong> Yes exactlly.</p>\n\n\n\n<p>[00:16:47] <strong>Nathan Wrigley:</strong> I confess I have experienced that problem before, and I hadn&#8217;t noticed, until just now, that that was because of that. I&#8217;ve definitely had books that I&#8217;ve been reading where I&#8217;ve struggled to begin the next line, and sometimes repeated the line that I was supposed to be on. Or I&#8217;ve skipped a line and missed a line out and only halfway through thought, actually that doesn&#8217;t make any sense. Let me go back. I had no idea. But also you are saying that the amount of, what did you call it, the space?</p>\n\n\n\n<p>[00:16:30] <strong>Giulia Laco:</strong> Oh, typographers call it leading because it&#8217;s comes from lead, lead, lead, I don&#8217;t know, of the metal types. With metal types they used to put some space between the lines with some lead. So the lead bars.</p>\n\n\n\n<p>[00:16:45] <strong>Nathan Wrigley:</strong> Oh, okay. So they spaced them out with a physical object.</p>\n\n\n\n<p>[00:16:30] <strong>Giulia Laco:</strong> Yes, exactly.</p>\n\n\n\n<p>[00:16:45] <strong>Nathan Wrigley:</strong> And it was a bar of lead, and the wider the bar of lead, the more space. This is fascinating. But you also mentioned in the letter e for example, the lowercase e, forgive me if I misunderstood. So the bottom half of the letter e, there&#8217;s a gap, a little gap, and the amount of gap, if the gap is bigger.</p>\n\n\n\n<p>[00:17:07] <strong>Giulia Laco:</strong> That&#8217;s the aperture, yes.</p>\n\n\n\n<p>[00:17:08] <strong>Nathan Wrigley:</strong> The bigger the gap is, the more you are likely to be able to read it, typically?</p>\n\n\n\n<p>[00:17:13] <strong>Giulia Laco:</strong> Yes, because you&#8217;re likely to distinguish it from an o.</p>\n\n\n\n<p>[00:17:16] <strong>Nathan Wrigley:</strong> Of course.</p>\n\n\n\n<p>[00:17:17] <strong>Giulia Laco:</strong> You decode it easiest.</p>\n\n\n\n<p>[00:17:19] <strong>Nathan Wrigley:</strong> You keep mentioning Helvetica. Is that a font which has lots of problems? Is that why you mention it, because it&#8217;s full of things you can identify?</p>\n\n\n\n<p>[00:17:26] <strong>Giulia Laco:</strong> It&#8217;s very well known. That&#8217;s why I&#8217;m mentioning. And very much used. But it&#8217;s better to use it as a display type.</p>\n\n\n\n<p>[00:17:34] <strong>Nathan Wrigley:</strong> The only thing that I&#8217;ve ever had a problem reading, was the thing that I&#8217;ve just described where I have skipped a line or gone back and reread the other line. But I&#8217;m imagining that you&#8217;ve done this talk because there are problems which people experience, which I fortunately, don&#8217;t appear to have a problem with. What trips people up? If you were somebody that, I don&#8217;t know how to say this correctly. If you are somebody who struggles to read, what are the trip wires, if you know what I mean?</p>\n\n\n\n<p>What are the things in a font could be wrong that make you unable to read it? So you mentioned that the line height, you mentioned the X-height. Is there more to it than that?</p>\n\n\n\n<p>[00:18:14] <strong>Giulia Laco:</strong> Well, there might be a lot. One thing that I can think of are ambiguous forms of letters. Let&#8217;s take lowercase letters, p and q or b and d. So for these four letters in a sans serif font, for example, are usually with the same shape, just flipped or rotated. That&#8217;s said to be a problem with people that experience dyslexia. But it&#8217;s actually opinionated because we don&#8217;t know exactly how it works. Actually for everybody can be a problem to distinguish between similar shapes.</p>\n\n\n\n<p>For example, as you said before, a child who is starting to read, or to write as well, may experience the same problem. No matter if it&#8217;s, if there&#8217;s a problem of dyslexia or not. So if you are going to avoid these kind of things, you can pick a font, a serif font that generally has different letters, different forms. The four letters I mentioned, typically with small serfis in different parts of the letters so they can be distinguished, for sure.</p>\n\n\n\n<p>[00:19:27] <strong>Nathan Wrigley:</strong> Can you, I know it&#8217;s probably obvious to most people, but will you just tell people what a serif font is and what it isn&#8217;t? You know, if you&#8217;ve got a non serif font or serif font, what&#8217;s the difference?</p>\n\n\n\n<p>[00:19:39] <strong>Giulia Laco:</strong> Let&#8217;s take the example of Helvetica and Times New Roman. So maybe it&#8217;s easier for people to visualize the difference. Helvetica has straight lines, nothing at the termination of the strokes. Whereas Times New Roman has some small shapes that derive from the calligraphic or the, in that case, for the upper case, the engraving, the instrument that we use to engrave. And so they had this little [feet?] let&#8217;s say so, that distinguish the kind of font.</p>\n\n\n\n<p>And the font has a different mood, very different mood. And a lot of other characteristics. There are, well, history of typography is based on that more or less.</p>\n\n\n\n<p>[00:20:24] <strong>Nathan Wrigley:</strong> It always feels to me as if a font, a serif font, which has these, I think you use the word where the letter terminates. I&#8217;ve never really</p>\n\n\n\n<p>[00:20:31] <strong>Giulia Laco:</strong> thought about that. They always look as if they&#8217;re more, I don&#8217;t know, maybe in a legal document or something like that. They have this feeling of something more powerful or more important or something. It&#8217;s quirky that, isn&#8217;t it?</p>\n\n\n\n<p>I&#8217;m looking at a Google Doc where I&#8217;ve written my show notes and, I don&#8217;t see any that. I can&#8217;t tell you that either of those fonts are a serif font or a non serif font. I find them both equally easy to read. It doesn&#8217;t trip me up at all. But typically, is there a problem for some people with a serif font or a non serif font? Is there one, to catch everybody would it be better to not deploy a serif font or is there just no difference in people&#8217;s ability to cope with either?</p>\n\n\n\n<p>Each font is maybe very different. Most people at the first level, when they start talking about topography, they started to see this difference. But that&#8217;s not the main point. Maybe the main point in readability is the rhythm of letters. The rhythm where the white space and the black space, meaning when you have black text on white. They alternate each other.</p>\n\n\n\n<p>Try to figure out this word, minimum. You&#8217;ll have a lot of rhythm. Minimum in, written in lower case letters. You see? So, the rhythm is very, very different. And maybe that&#8217;s important in typography, in reading. And is very important for people who struggle with reading, because you don&#8217;t interrupt the rhythm. The rhythm helps reading.</p>\n\n\n\n<p>[00:22:03] <strong>Nathan Wrigley:</strong> It just sort of bounces along, doesn&#8217;t it? If you look at the word minimum, it genuinely has a, it&#8217;s almost like a little wave pattern going up and down, isn&#8217;t it? That&#8217;s fascinating. So what did you call it? Your ability to read it. There was a word you just said. Rhythm, rhythm. So words can have rhythm, and the more rhythm there is, the easier it is to read. So if a font provides rhythm, that&#8217;s a good thing.</p>\n\n\n\n<p>[00:22:24] <strong>Giulia Laco:</strong> I think so. But it depends also on the purpose. Long reading. I think that&#8217;s important. Otherwise it&#8217;s different. It&#8217;s totally different. I mean concepts with display types because they have a different purpose, you know, text and function. The titles have different purpose. They have to catch the attention. Whereas the long, the body text has to be read, so needs a different kind of attention.</p>\n\n\n\n<p>[00:22:53] <strong>Nathan Wrigley:</strong> Right. And are there any guidelines which kind of fonts catch the attention more, and which kind of fonts work better with the body content? You know, where you&#8217;re reading long paragraphs and so on? Does it matter or is there one kind of font that you would recommend in each case?</p>\n\n\n\n<p>[00:23:08] <strong>Giulia Laco:</strong> Generally, when you buy a font, you&#8217;ll have a font that is meant for body text and some other for display type. So if you rely on what the designer, the type designer, has done, you are safe. Otherwise you have to. try. But also if you go on a repository like Google fonts for example, you have this distinction among display types and other kind of types. So it&#8217;s quite a common mistake at the beginning to take display type and use it as a body text. And that&#8217;s a typographic crime.</p>\n\n\n\n<p>[00:23:47] <strong>Nathan Wrigley:</strong> I like it. Typographic crime. That&#8217;s great. We&#8217;re all of us using our devices more and more. It&#8217;s funny that you said that reading is becoming less and less, because it feels like we have text in front of us all the time now. So we&#8217;re constantly staring at our mobile phones, and our computers. But when I was a child, if I wasn&#8217;t holding book, I probably wasn&#8217;t reading.</p>\n\n\n\n<p>I mean, maybe there was a poster somewhere or something, but I&#8217;m surprised that reading is, there&#8217;s less desire to read, because it feels like every day I&#8217;m reading more or less constantly, you know, I&#8217;m scanning Twitter or Facebook or whatever.</p>\n\n\n\n<p>[00:24:26] <strong>Giulia Laco:</strong> It&#8217;s a new kind of reading, Because we had long form reading for books. Then we have glanceable reading for, I don&#8217;t know, street signs. Or maybe a manual in a website. And then we have this, they call it interlude reading. You read when you&#8217;ve time, you&#8217;re doing, you don&#8217;t have a lot of attention, you scroll. And then you have also that the way we read on the web is very different from what we read, elsewhere.</p>\n\n\n\n<p>For example, we have this shape, F shaped reading. When we, in a website, eye tracking has shown it quite a lot. You start from the top left where the logo generally is. Then you go on the right, then you go on the left, but a bit bottom, and then a bit, you are just drawing an F more or less, when you read.</p>\n\n\n\n<p>[00:25:17] <strong>Nathan Wrigley:</strong> So that&#8217;s what the eye typically does when it lands on a webpage.</p>\n\n\n\n<p>[00:25:20] <strong>Giulia Laco:</strong> Yes.</p>\n\n\n\n<p>[00:25:20] <strong>Nathan Wrigley:</strong> What was that? Top left, top right.</p>\n\n\n\n<p>[00:25:23] <strong>Giulia Laco:</strong> Bottom.</p>\n\n\n\n<p>[00:25:23] <strong>Nathan Wrigley:</strong> Bottom.</p>\n\n\n\n<p>[00:25:24] <strong>Giulia Laco:</strong> A bit in the middle, right. And then bottom again.</p>\n\n\n\n<p>[00:25:27] <strong>Nathan Wrigley:</strong> So it makes an, if you were to draw on top of that screen, it coincidentally looks a bit like a capital F.</p>\n\n\n\n<p>[00:25:32] <strong>Giulia Laco:</strong> Yes, exactly.</p>\n\n\n\n<p>[00:25:33] <strong>Nathan Wrigley:</strong> That&#8217;s fascinating.</p>\n\n\n\n<p>[00:25:34] <strong>Giulia Laco:</strong> Capital F reading.</p>\n\n\n\n<p>[00:25:36] <strong>Nathan Wrigley:</strong> Capital F reading. Presumably that&#8217;s on a desktop. On this, I&#8217;m not doing that am I? I&#8217;m holding up my phone. If I&#8217;m looking at a webpage, presumably it&#8217;s a different experience. It&#8217;s just left to right, left to right, left to right.</p>\n\n\n\n<p>[00:25:49] <strong>Giulia Laco:</strong> Also because you are hiding some part of the text with your thumbs. Are you right-handed? Left-handed? It depends what you do. And it change a lot. For example, in the UX design, we generally change some patterns with smartphones because we put some menus at the bottom because the area near the thumb, for example.</p>\n\n\n\n<p>So, if it changes where you put your fingers, your changes also where you put your eyes. Focusing in which part of the screen.</p>\n\n\n\n<p>[00:26:20] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s interesting. My experience of the internet is that usually the menu on a mobile device comes at top right. There&#8217;s usually some icon.</p>\n\n\n\n<p>[00:26:28] <strong>Giulia Laco:</strong> But that&#8217;s for convention.</p>\n\n\n\n<p>[00:26:29] <strong>Nathan Wrigley:</strong> But what you&#8217;ve just described is much more sensible, having the menu the bottom because.</p>\n\n\n\n<p>[00:26:33] <strong>Giulia Laco:</strong> I hope it will change soon.</p>\n\n\n\n<p>[00:26:34] <strong>Nathan Wrigley:</strong> Because my thumb can just go right to it. It&#8217;s just there. Yeah, that&#8217;s fascinating. It does matter what device you&#8217;re on. But are you using the same? I know that you&#8217;ve said that you reposition things like the menu or what have you, but are you using the same font on a desktop as you would be on a mobile device? Is it broadly the same? You don&#8217;t need to worry about the view port of a mobile device in terms of the CSS for setting the font. It&#8217;s just the same desktop, mobile, tablet, same fonts.</p>\n\n\n\n<p>[00:27:03] <strong>Giulia Laco:</strong> From the readability point of view, I would say yes. And it&#8217;s for branding. I guess it&#8217;s better to have different environments recognizable. Whereas you have to pay attention to licensing. If you buy a font, for example, you put it on an app, you might need a different license. If you&#8217;re using open type, open source phones, you are not going to have a problem. But if you buy, if you rent, web fonts, yeah, you might have some problem or you have to check if you can put that web front on an app. You might need a different license.</p>\n\n\n\n<p>[00:27:39] <strong>Nathan Wrigley:</strong> Yeah, I hadn&#8217;t really thought about that. It&#8217;s always quite common in the circle of friends that I have, comic sans is a font, which most of my friends ridicule. They think it&#8217;s a childish font. Nobody would put it on a professional website. Are there some fonts like that, which you would just always avoid? Not because they look childish, but because they are largely unreadable.</p>\n\n\n\n<p>[00:28:00] <strong>Giulia Laco:</strong> There might be some, for example, well comic sans has a very big history of love and hate, basically of hate actually. But remember the case and presentation of the Higgs Boson?</p>\n\n\n\n<p>[00:28:16] <strong>Nathan Wrigley:</strong> Yes. Was that done in comic sans?</p>\n\n\n\n<p>[00:28:18] <strong>Giulia Laco:</strong> Yes. There was a Twitter storm. Okay, you couldn&#8217;t use that informal font on a formal presentation, and that raised the topic actually. You have to use the font that is proper to the situation. It&#8217;s like clothing. The clothes you wear, it&#8217;s like the font you use. It depends on the situation.</p>\n\n\n\n<p>But I can understand the feeling that people have when they choose comic sans. And maybe I can suggest something similar, but a bit more proper, or a bit more interesting in that context.</p>\n\n\n\n<p>There&#8217;s one font. I am on Google fonts repository. That&#8217;s called Amantic Small Caps, and it&#8217;s a small caps, so it&#8217;s a more, it&#8217;s not lowercase. But it&#8217;s, I think has a similar mood and I would dare it&#8217;s quite a new comic sans in the mood. I mean, it has the same mood, in my opinion. I say in my opinion, it&#8217;s also because it&#8217;s in my culture, it&#8217;s very culture dependent. Because it&#8217;s based on what you saw, what you associate to those fonts for example.</p>\n\n\n\n<p>[00:29:28] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s really interesting when I travel to the US. The US have a really different set of fonts which they use, especially on government documents, than we have in the UK. And wherever I look, so I don&#8217;t know, I buy some sun cream or something like that. The font choice is utterly different from how it would typically look in the UK. And it&#8217;s kind of curious, that it&#8217;s so obvious to me that that&#8217;s an American box. And yet it&#8217;s merely a font that tells me that. But I can see it all the time.</p>\n\n\n\n<p>But what you&#8217;re saying though is you&#8217;ve got to use your intuition. There&#8217;s no rule for this is a good font, that&#8217;s a bad font. It&#8217;s really where are you putting it and your own personal preference. There are no fonts which are out of the question because they&#8217;re just literally unreadable by a subset of the people, no, you look like you&#8217;re about to say something.</p>\n\n\n\n<p>[00:30:18] <strong>Giulia Laco:</strong> Well, there might be some fonts that are really illegible, but there are some really nice experiment by a very talented type designers, David Jonathan Ross. He tried to push the boundaries of readability, making good fonts, but making how long you can go to draw a very new kind of letter and still have it readable. So that&#8217;s interesting to see. But made by people who know what they do.</p>\n\n\n\n<p>Whereas if you start, if you look at the, I don&#8217;t know, fonts that you can have on a lot of websites, just experiments by people who start. But if you, look at experiments by very good designers, oh, you know what they do.</p>\n\n\n\n<p>[00:31:06] <strong>Nathan Wrigley:</strong> You make client websites still. Do you get into this conversation quite a lot with your clients? Is typography something that you bang the drum of?</p>\n\n\n\n<p>[00:31:14] <strong>Giulia Laco:</strong> I try to listen as for everything else, to the client and understand what they need. And then I&#8217;ll try to suggest what I think is proper. It&#8217;s like also for the colour of a website for example. I ask and I give an advice maybe.</p>\n\n\n\n<p>[00:31:30] <strong>Nathan Wrigley:</strong> Are there any kind of hard and faster rules for where you, really, it would be unwise to put typography. In our show notes, I was talking about things like is it a bad idea to put, I don&#8217;t know, fonts into images.</p>\n\n\n\n<p>So you&#8217;re overlaying fonts on images. In other words, is it better always to have fonts on a plain background rather than on, let&#8217;s say you&#8217;ve got a mountain scene or something and you want to write something, you put it onto the image. Is it better to keep the text away from the images? That was just one thought.</p>\n\n\n\n<p>[00:32:02] <strong>Giulia Laco:</strong> That&#8217;s definitely better. But you have to distinguish between titles and body copy. A title might be, how can I say? It would be okay anyway. It&#8217;s only a word. You might have some tricks, for example, reducing the contest of the underground image. As long as you stick with accessibility guidelines, you&#8217;re safe for that regard.</p>\n\n\n\n<p>There are very good starting point for readability. I mean, I generally say that it&#8217;s better to start from accessibility and there are a lot of accessibility guidelines that help with the text. And then you go on and if you have some tools, like a very powerful web font, you can do more. And then you go with type setting and start type setting.</p>\n\n\n\n<p>Well, for example, you have to stop the line length. That&#8217;s very, very important. You don&#8217;t have to let your user go through all the screen, a very huge screen to go to the other line, to the second line.</p>\n\n\n\n<p>[00:33:04] <strong>Nathan Wrigley:</strong> Is there any guidance about how wide the text line should be? So maybe that&#8217;s a, I don&#8217;t know, you said using a number pixels is not always the best idea. But is there a character limit, or a word limit typically where the eye can cope with scanning from left to right and then beginning again. Because I&#8217;m staring at a Google Doc at the moment and it&#8217;s kind of interesting that the Google Doc looks like a piece of paper.</p>\n\n\n\n<p>And they&#8217;ve obviously deliberately taken it in. The Google doc could consume the whole width of my monitor, but it doesn&#8217;t. They&#8217;ve confined it to what looks like a piece of paper, and I presume that&#8217;s a convention, just so that my eye doesn&#8217;t have to go far left, far right, far left, far right. I could keep my nose pointed at the document and just let my eye do the work, whereas if it went from left to right, I would be moving my neck all the time as well. So is there a guidance of how wide text should be?</p>\n\n\n\n<p>[00:33:56] <strong>Giulia Laco:</strong> Typographers, for a long time, had recommended a line length of between 45 and 65 characters per line. It depends for Latin alphabets. The Web Accessibility Guidelines says, I think at the level Triple A. They say that they need 80 characters maximum per line for Latin, I think 40 for languages with ideograms. So they say something about that.</p>\n\n\n\n<p>And it&#8217;s very interesting to see that there&#8217;s a correlation between this line length and the way we read. The way we read is basically with eye and brain because, it&#8217;s a really complex process. But when we read with the eye, we just focus on few letters at the time, maybe six, seven characters. Then we jump to another area of fixation. And so you can do some math. A very good typographer Bruno Maag made that math.</p>\n\n\n\n<p>And he discovered that calculating the number of characters you see in each fixation has a relationship with what typographers said for years, for decades, for centuries actually. So they arrived at the same conclusions. So let&#8217;s say 55, 65 characters per line is a good measure.</p>\n\n\n\n<p>[00:35:18] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:35:18] <strong>Giulia Laco:</strong> On the other hand, all these factors are correlated. And especially font size, line height, and line length. Some typographers says that it&#8217;s like a triangle of these three elements have to be on balance. So if you change one, you have to change the others. Adapt the others.</p>\n\n\n\n<p>[00:35:40] <strong>Nathan Wrigley:</strong> So we&#8217;ve just been talking about the left to rightness, the line length. Is there anything about the length of the paragraphs that you use as well? I mean, I&#8217;m just used to reading books and obviously they&#8217;re confined by the width. The line length is taken account of. But I&#8217;m conscious that everything&#8217;s broken up into paragraphs and those chunks of meaning have often got little gaps between them. I&#8217;m imagining in many cases, paragraphs could go on for pages, but it&#8217;s better to break it up and it helps the brain to associate that this is a body of meaning and here&#8217;s another body of meaning and so on.</p>\n\n\n\n<p>[00:36:10] <strong>Giulia Laco:</strong> Yes. I think absolutely. The basic of our work as web designers actually. So it&#8217;s different from what we do on paper, because on screens we have to catch the attention. And so we need to make things very easy for the reader. That&#8217;s the purpose. Maybe it&#8217;s not always the case that that&#8217;s the purpose, but on web design generally, that&#8217;s the purpose.</p>\n\n\n\n<p>So it&#8217;s better to split a paragraph in a few small chunks, let&#8217;s say so, and give different, styling and introduce hierarchy as well. So that helps a lot in reading.</p>\n\n\n\n<p>[00:36:48] <strong>Nathan Wrigley:</strong> So headings and paragraphs and other headings and so on. You mentioned in the show notes that when you did your workshop, were going to give some helpful CSS to break up the text. Can you just tell us what that was? What helpful CSS did you have?</p>\n\n\n\n<p>[00:37:02] <strong>Giulia Laco:</strong> Basically, I would say that&#8217;s very important not to use an absolute unit when you set the font size. Where font size is what is more relevant in readability? Because if it&#8217;s too small, you can&#8217;t read at all. If it&#8217;s too big, also so you can&#8217;t read it well. So font size is very important and after the responsive web design, we&#8217;ve had the responsive web typography. It didn&#8217;t come at the same time. Because with responsive web design, we started to make things different for different devices. But we didn&#8217;t touch the font size.</p>\n\n\n\n<p>[00:37:40] <strong>Nathan Wrigley:</strong> Right, it was just the same. Yeah.</p>\n\n\n\n<p>[00:37:42] <strong>Giulia Laco:</strong> But it was really important to change the font size. At the beginning I thought that it was important to make smaller font size on smartphones. Because you had a very smaller screen, but that was not the reason I realized later on.</p>\n\n\n\n<p>And the reason is the distance of reading. So when you read something that is near, you don&#8217;t need a big font size. You generally keep an iPhone at 20, 30 centimeters of distance from your eye. Whereas if you read to a computer you are 70 centimeter, 80, 1 meter, I don&#8217;t know. If you read to a screen in a room, for example, yeah, it&#8217;s very, very different.</p>\n\n\n\n<p>For example, yesterday I had this at the workshop. I had this CSS Codepen. I realized I had some minimum and maximum font size in my slider. It was perfect for desktop reading. As soon as I was in the room, I said, oh no, I have to change, and I changed it to a different values because of that.</p>\n\n\n\n<p>[00:38:48] <strong>Nathan Wrigley:</strong> So, the presentation looked good on your computer, but as soon as it went on the big screen.</p>\n\n\n\n<p>[00:38:52] <strong>Giulia Laco:</strong> Okay, the presentation was okay because I knew it in advance. I mean, it was a presentation, but it was in the playground, I realized, yes. And because I had all those values, I was guessing what was reasonable values. But I didn&#8217;t test it before on such a big room.</p>\n\n\n\n<p>[00:39:10] <strong>Nathan Wrigley:</strong> So I&#8217;m guessing that at some point soon we&#8217;ll be able to make a link to WordPress TV. It occurs to me that the whole time we&#8217;ve been talking about typography, but we&#8217;ve probably been concentrating on English. Although it&#8217;s a common language, it&#8217;s by no means what everybody reads.</p>\n\n\n\n<p>So we&#8217;re going from top to bottom, left to right. But other parts of the world, let&#8217;s say people that read Arabic or Hebrew or Korean or Japanese or Chinese, whatever it is. They&#8217;re going in completely different directions, left to right, bottom to top and so on.</p>\n\n\n\n<p>Do they have similar concerns with their characters? Or is it just uniquely the Latin set of characters which has these problems?</p>\n\n\n\n<p>[00:39:54] <strong>Giulia Laco:</strong> I&#8217;m sure they have. Also maybe different problems. I&#8217;ll distinguish between Arabic to the other languages you mentioned, like Japanese, Chinese, and Korean, for example. They have ideograms. With Arabic it&#8217;s quite a calligraphic origin of the way of writing. And they make a lot of use of ligatures. It means it changes the shape of letters according to their combination.</p>\n\n\n\n<p>We have ligatures in Latin as well. For example, if you think of f and i, small lowercase letters f and y. Sometimes you have one glyph that put the dot of the i inside the f. And that&#8217;s coded inside the file, the font file.</p>\n\n\n\n<p>So in Arabic they have a lot of ligatures. And lately I&#8217;ve discovered that they also use color for accent. And Google fonts has some new fonts with this characteristic. Color fonts. Do you know color fonts?</p>\n\n\n\n<p>[00:40:54] <strong>Nathan Wrigley:</strong> No.</p>\n\n\n\n<p>[00:40:54] <strong>Giulia Laco:</strong> They&#8217;re very, very new. They&#8217;re coming.</p>\n\n\n\n<p>[00:40:57] <strong>Nathan Wrigley:</strong> How do you deploy color to. What? You&#8217;re going to have to explain that.</p>\n\n\n\n<p>[00:41:00] <strong>Giulia Laco:</strong> Well, they have color coded inside the typeface. It&#8217;s a new format we can use. And, it&#8217;s linked to CSS. It&#8217;s not so much ready, but it&#8217;s coming. It&#8217;s a new technology after variable fonts.</p>\n\n\n\n<p>[00:41:17] <strong>Nathan Wrigley:</strong> So certain aspects, certain portions of the letter receive different colors?</p>\n\n\n\n<p>[00:41:22] <strong>Giulia Laco:</strong> Yes.</p>\n\n\n\n<p>[00:41:23] <strong>Nathan Wrigley:</strong> And it provides, I have to just ask why? Why would you want to have a different portion of the letter in a different color?</p>\n\n\n\n<p>[00:41:30] <strong>Giulia Laco:</strong> Apart from Arabic, why not?</p>\n\n\n\n<p>[00:41:31] <strong>Nathan Wrigley:</strong> Oh, so it is, it&#8217;s just style. It&#8217;s not from the point of view of readability or legibility?</p>\n\n\n\n<p>[00:41:37] <strong>Giulia Laco:</strong> No. New frontiers of typography.</p>\n\n\n\n<p>[00:41:39] <strong>Nathan Wrigley:</strong> Oh, that is interesting.</p>\n\n\n\n<p>[00:41:40] <strong>Giulia Laco:</strong> But that was one point, but for Arabic might be for readability purpose. That&#8217;s why I mentioned it.</p>\n\n\n\n<p>[00:41:46] <strong>Nathan Wrigley:</strong> Honestly, this is such a fascinating subject. Unfortunately, we&#8217;re running out of time. Where would we go if we&#8217;ve been inspired by the talk that you&#8217;ve given today to me? Have you got any tips or places, websites to go to? If people are curious, where would you send them?</p>\n\n\n\n<p>[00:42:03] <strong>Giulia Laco:</strong> Okay. There are plenty of places and topography has been receiving quite an attention lately on the web. I&#8217;m always talking about on the web. But you can start with books from the tradition of typography. There are, I don&#8217;t know, from the sacred book of yypography, Robert Bringhurst, The Elements of Typographic Style. That&#8217;s a really nice starting point. Well, it&#8217;s not only a starting point.</p>\n\n\n\n<p>Erik Spiekermann&#8217;s, Stop Stealing Sheep and Find Out How Type Works. It&#8217;s very funny name. It has a history. I won&#8217;t spoiler it.</p>\n\n\n\n<p>Or I really, really liked the book by Richard Rutter, that is more on the web. It&#8217;s called Web Typography. It&#8217;s a manual on that.</p>\n\n\n\n<p>Or otherwise you can follow Jason Parmental that has been making a lot of experiments. It depends which part are you interested in.</p>\n\n\n\n<p>[00:42:59] <strong>Nathan Wrigley:</strong> You&#8217;ve given three or four things there. There&#8217;s probably something to get teeth into. And what about you? Where would we find you if people have listened to this and quite fancy having a chat with you about all this. Where do you hang out online?</p>\n\n\n\n<p>[00:43:09] <strong>Giulia Laco:</strong> Quite everyone. Maybe on LinkedIn, maybe you can reach me there so it&#8217;s better.</p>\n\n\n\n<p>[00:43:14] <strong>Nathan Wrigley:</strong> I will find your LinkedIn profile and I will link to that in the show notes. So let&#8217;s wrap it up there. Giulia, thank you so much for chatting to me today. Honestly, a real eye-opener. I&#8217;ve enjoyed that a lot.</p>\n\n\n\n<p>[00:43:24] <strong>Giulia Laco:</strong> Thank you. Me too.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/giulialaco/\">Giulia Laco</a>.</p>\n\n\n\n<p>Giulia is a web designer and developer who has been working on the web since the mid 1990s. Her primary interests are web typography &amp; font design. In addition to project development, she is a consultant and a trainer, mostly working with CSS, web fonts and web typography.</p>\n\n\n\n<p>This is the last of our podcasts from WordCamp Europe 2023. I spoke to Giulia in Athens because she had just finished her presentation entitled “Typographic readability in theme design &amp; development”.</p>\n\n\n\n<p>In this session she explored how designers can assist with the readability of websites through careful consideration of the fonts they choose, and why they choose them.</p>\n\n\n\n<p>It turns out there’s quite a lot to consider, and if you’ve not given this topic much thought in the past, you’ll perhaps learn something new.</p>\n\n\n\n<p>We begin the podcast talking through how, at the start of the web, we were making do with a limited range of tools to help us make typographic choices. There were no web fonts available, but that started to change around 2010. Now we have access to hundreds of fonts and need to be mindful that some fonts can pose readability challenges for some users of your website.</p>\n\n\n\n<p>Giulia talks about the fact that the manner in which we read has changed since the dawn of the internet. Many people now mostly consume small passages of text, which need to be considered in a different way to longer writing.</p>\n\n\n\n<p>Concentrating upon the letters in the Latin alphabet, we talk about the ways in which readers typically break up words into smaller units, and the fact that the way letters are shaped can make them easier to parse. There’s some technical language here, ligatures, X-height, apertures, and more, which tell us about the shaping and spacing of letters. Giulia explains the current state of research into how these characteristics of fonts can affect readability.</p>\n\n\n\n<p>We talk about whether or not there are fonts which are more readable than others. Is there a collection of fonts which you can use and be confident that you’re going to make it easy for all users of your websites?</p>\n\n\n\n<p>Giulia talks about how designs need to consider the spaces into which text is put. Most people have a proclivity for the order in which they view a page, and knowing about this path across the page can help your readers access the text. The width of the text is also important; you want people to be able to read from side to side without having to move their head. How does this work across different device sizes, and what can be said about text which runs from right to left, or top to bottom?</p>\n\n\n\n<p>We round off the conversation with Giulia telling us where we can find out more, as well as some of the thought leaders in this space.</p>\n\n\n\n<p>It’s a fascinating conversation about a subject that often gets overlooked. Website designers, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p>Giulia&#8217;s WordCamp Europe 2023 Session &#8220;<a href=\"https://europe.wordcamp.org/2023/session/typographic-readability-in-theme-design-development/\">Typographic readability in theme design &amp; development</a>&#8220;</p>\n\n\n\n<p><a href=\"https://thereadabilityconsortium.org/\">The Readability Consortium</a></p>\n\n\n\n<p><a href=\"https://fonts.google.com/specimen/Amatic+SC\">Amantic Small Caps font</a></p>\n\n\n\n<p><a href=\"https://djr.com/\">David Jonathan Ross&#8217; website</a></p>\n\n\n\n<p><a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">Web Accessibility Guidelines website</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Bruno_Maag\">Bruno Maag Wikipedia page</a></p>\n\n\n\n<p><a href=\"https://fonts.google.com/\">Google fonts</a></p>\n\n\n\n<p><a href=\"https://archive.org/details/elementsoftypogr0000brin\">Robert Bringhurst&#8217;s The Elements of Typographic Style</a></p>\n\n\n\n<p><a href=\"https://www.oreilly.com/library/view/stop-stealing-sheep/9780133441147/\">Erik Spiekermann&#8217;s Stop Stealing Sheep and Find Out How Type Works</a></p>\n\n\n\n<p><a href=\"https://book.webtypography.net/\">Richard Rutter&#8217;s Web Typography</a></p>\n\n\n\n<p><a href=\"https://rwt.io/\">Jason Parmental&#8217;s website</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/giulialaco/\">Giulia&#8217;s LinkedIn page</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.3 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7320:\"<p>WordPress 6.3 RC2 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, or run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>WordPress 6.3 is scheduled for release on August 8, 2023 – just two weeks from today.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC2 Highlights</h2>\n\n\n\n<p>Since the RC1 release on July 18, 2023, there have been approximately 15 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=07%2F18%2F2023..07%2F25%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>.</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>Footnotes will be reverted or restored with post revisions (<a href=\"https://github.com/WordPress/gutenberg/pull/52686\">#52686</a>).</li>\n\n\n\n<li>Distraction free adds a missing command in the site editor (<a href=\"https://github.com/WordPress/gutenberg/pull/52868\">#52868</a>).</li>\n\n\n\n<li>Global styles revisions will display text if no revisions are found (<a href=\"https://github.com/WordPress/gutenberg/pull/52865\">#52865</a>).</li>\n\n\n\n<li>The About Page has been completed (<a href=\"https://core.trac.wordpress.org/ticket/58067\">#58067</a>).</li>\n\n\n\n<li>The About Page now includes a “Get Involved” section (<a href=\"https://core.trac.wordpress.org/ticket/23348\">#23348</a>).</li>\n\n\n\n<li>The dark mode option has been restored in the block editor iframe for Twenty Twenty-One (<a href=\"https://core.trac.wordpress.org/ticket/58835\">#58835</a>).</li>\n\n\n\n<li>Max height value was fixed in the image scaling in the Edit Media screen (<a href=\"https://core.trac.wordpress.org/ticket/50523\">#50523</a>).</li>\n\n\n\n<li>Additionally, some issues regarding internationalization were addressed (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58879\" target=\"_blank\">#58879</a>, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58067\" target=\"_blank\">#58067</a> and <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58864\" target=\"_blank\">#58864</a>).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC2</h2>\n\n\n\n<p>You can test WordPress 6.3 RC2 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC2.zip\">RC2 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br /><code>wp core update --version=6.3-RC2</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.3 betas by now. With RC2, you will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC2</h2>\n\n\n\n<p>Time is nearly here<br />WordPress shines thanks to you all<br />Let’s get testing, dear</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/priethor/\">@Priethor</a></em>,<em> <a href=\"https://profiles.wordpress.org/audrasjb/\">@AudrasJb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@DavidBaumwald</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">@JPantani</a></em> and <em><a href=\"https://profiles.wordpress.org/meher/\">@Meher</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 16:43:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordCamp Central: WordCamp Malaysia 2023 is Looking for Speakers and Sponsors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3240139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://central.wordcamp.org/news/2023/07/wordcamp-malaysia-2023-is-looking-for-speakers-and-sponsors/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2991:\"<img src=\"https://malaysia.wordcamp.org/2023/files/2023/06/WCMY-2023-Feature-Image-fb.png\" alt=\"\" />\n\n\n\n<p>WordCamp Malaysia 2023 is set to take place on 8-9 September 2023 at the Cheras North International Convention Centre (CNICC) in Kuala Lumpur, Malaysia. The first ever WordCamp Malaysia promises to be an unforgettable gathering, offering a platform for knowledge sharing, networking, and community building.</p>\n\n\n\n<img src=\"https://i0.wp.com/malaysia.wordcamp.org/2023/files/2023/06/CNICC-Cheras-North-International-Convention-Centre-edited.jpg?resize=680%2C382&ssl=1\" alt=\"\" class=\"wp-image-1017\" />\n\n\n\n<p>Situated near the city center, CNICC provides convenient access to major transportation hubs, allowing attendees to make the most of their time in Kuala Lumpur. With a plethora of nearby amenities and attractions, visitors can immerse themselves in the city’s rich cultural experiences, explore its iconic landmarks, indulge in its diverse culinary scene, and even venture into the nearby natural parks.</p>\n\n\n\n<img src=\"https://i0.wp.com/malaysia.wordcamp.org/2023/files/2023/06/IMG_0612.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-990\" />\n\n\n\n<p>The organizing team behind WordCamp Malaysia 2023 is actively seeking speakers who can share their valuable insights, expertise, experiences, and inspiring stories with the WordPress community. If you have a passion for WordPress and a desire to contribute to its growth, this is your chance to shine. Interested individuals can&nbsp;<a href=\"https://malaysia.wordcamp.org/2023/call-for-speakers/\">submit speaker proposals now</a>. Don’t miss the opportunity to be part of this prestigious event and make an impact on the WordPress community in Malaysia.</p>\n\n\n\n<img src=\"https://i0.wp.com/malaysia.wordcamp.org/2023/files/2023/06/HRX00555.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-989\" />\n\n\n\n<p>In addition to speakers, WordCamp Malaysia 2023 is also actively seeking sponsors to showcase and elevate their brands and products to the WordPress community in Malaysia. This is an exceptional opportunity for businesses and organizations to gain exposure, connect with a highly engaged audience, and demonstrate their commitment to supporting the WordPress ecosystem. To explore the various sponsorship packages available and learn more about the benefits of becoming a sponsor, interested parties can visit&nbsp;<a href=\"https://malaysia.wordcamp.org/2023/call-for-sponsors/\">the call for sponsors page</a>.</p>\n\n\n\n<p>To stay updated and learn more about WordCamp Malaysia 2023, visit the official website at&nbsp;<a href=\"https://malaysia.wordcamp.org/2023/\">https://malaysia.wordcamp.org/2023/</a>&nbsp;. The website will serve as your go-to resource for event details, schedules, ticketing information, speaker profiles, and other important announcements.</p>\n\n\n\n<p>Don’t miss your chance to be part of WordCamp Malaysia 2023. Submit your speaker proposal or explore sponsorship opportunities today!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 12:53:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Sam Suresh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"WordCamp Central: WordCamp Masaka 2023: Celebrating Inclusion, Diversity, and Innovation with WordPress in Uganda’s Pearl of Africa!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3166793\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:152:\"https://central.wordcamp.org/news/2023/07/wordcamp-masaka-2023-celebrating-inclusion-diversity-and-innovation-with-wordpress-in-ugandas-pearl-of-africa/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3351:\"<p><a href=\"https://masaka.wordcamp.org/2023/\">WordCamp Masaka 2023</a> is the inaugural WordCamp event in Uganda&#8217;s Greater Masaka region. It will be held on <strong>October 6 and 7, 2023</strong>, at <a href=\"https://equsat.ac.ug/\">Equator University of Science and Technology</a> in Masaka City, Uganda. The event is dedicated to celebrating inclusion, diversity and fostering innovation within Uganda&#8217;s WordPress community.</p>\n\n\n\n<p>WordCamp Masaka 2023 will offer a wide range of engaging workshops, informative talks, and student WordPress project showcases designed to cater to attendees of different skill levels. The workshops will provide hands-on learning experiences and practical knowledge to help both beginners and advanced users enhance their WordPress skills. The informative talks will cover a diverse range of topics, providing valuable insights and inspiring discussions. The student WordPress project showcases will offer a platform for attendees to share their WordPress projects, regardless of their skill level, and gain inspiration from the creativity within the community.</p>\n\n\n\n<p>In addition to the diverse range of activities, WordCamp Masaka 2023 will include a contributor session dedicated to translating WordPress from English to Luganda. This session will actively engage participants of all skill levels in the translation process, fostering collaboration and empowering Luganda (the most spoken language in Uganda) speakers to access WordPress in their native language.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get Involved</h2>\n\n\n\n<ul>\n<li><a href=\"https://masaka.wordcamp.org/2023/tickets/\">Purchase Attendee Tickets</a>: Secure your tickets to join the WordPress community in celebrating this inaugural event in the Greater Masaka region, Uganda. Tickets are available for purchase, offering a unique opportunity to engage with like-minded individuals and expand your WordPress knowledge.</li>\n\n\n\n<li><a href=\"https://masaka.wordcamp.org/2023/call-for-sponsors/\">Call for Sponsors</a>: Support the first-ever WordCamp Masaka and gain visibility for your company. Explore available sponsorship options to contribute to the success of this event and demonstrate your commitment to the WordPress community.</li>\n\n\n\n<li><a href=\"https://masaka.wordcamp.org/2023/call-for-speakers/\">Call for Speakers</a>: Share your expertise, experiences, and insights by applying to be a speaker at WordCamp Masaka 2023. The call for speaker applications welcomes submissions, allowing you to contribute to a diverse range of topics during the event.</li>\n\n\n\n<li><a href=\"https://masaka.wordcamp.org/2023/call-for-volunteers/\">Call for volunteers</a>: Apply to be a volunteer and actively participate in the organization of WordCamp Masaka 2023. Volunteering offers a unique opportunity to contribute behind the scenes and play an integral role in the success of this inaugural event.</li>\n</ul>\n\n\n\n<p>The full list of speakers, session descriptions, and schedule will be published in early September 2023. Be sure to follow us on <a href=\"https://twitter.com/WordPressMasaka\">Twitter</a> and <a href=\"https://www.facebook.com/WordCampMasaka\">Facebook</a> to get the latest updates.</p>\n\n\n\n<p>Please don&#8217;t forget to post about this event on your social media handles using the hashtag <strong>#WCMasaka</strong>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 08:50:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Ssebuwufu Moses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: Learn How to Use WordPress Playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147137\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com/learn-how-to-use-wordpress-playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3215:\"<p>WordPress Playground, an experimental project that uses WebAssembly (WASM) to <a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser</a>, was <a href=\"https://twitter.com/dbchhbr/status/1679949344315936769\">number 1 on Hacker News</a> recently and was also <a href=\"https://techcrunch.com/2023/07/18/wordpress-playground-lets-you-run-wordpress-entirely-in-your-browser/\">featured on TechCrunch</a>. Word is getting around about how easy it is to fire up a sandbox environment in just a few seconds for testing plugins and themes and even different versions of WordPress and PHP.</p>\n\n\n\n<p>Visiting <a rel=\"noreferrer noopener\" href=\"https://playground.wordpress.net/\" target=\"_blank\"><code>playground.wordpress.net</code></a> instantly creates a real WordPress instance with admin access and everything without having to install PHP, MySQL, or Apache. Instead, it runs inside the browser using a SQLite database.</p>\n\n\n\n<p>The Playground isn&#8217;t just for developers. It also makes it easy for users who would not ordinarily maintain a local development environment to quickly test plugins or themes they find on WordPress.org, or to just explore new WordPress features in a safe place where you can&#8217;t break anything.</p>\n\n\n\n<p>If you have found it difficult to wrap your head around WordPress Playground, Learn WordPress has published a timely new tutorial called <a href=\"https://learn.wordpress.org/tutorial/how-to-start-using-wordpress-playground/\">How to start using WordPress Playground</a>. In this 10-minute video, WordPress Playground creator Adam Zieliński offers a quick demonstration of how to install plugins and themes and customize a site, and how to export design work from a customized theme. He also covers how to download the entire site and import it into a new WordPress instance, and guides users through basic compatibility testing of a theme, by switching the WordPress version on the playground site.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1878\" height=\"1048\" />Learn WordPress Tutorial: <a href=\"https://learn.wordpress.org/tutorial/how-to-start-using-wordpress-playground/\">How to start using WordPress Playground</a>\n\n\n\n<p>Developers who want try some more complicated things with this tool can check out the <a href=\"https://wordpress.github.io/wordpress-playground/docs/apis-overview\">Playground API</a> and learn <a href=\"https://developer.wordpress.org/playground/\">how to integrate it with an app</a> in five minutes. It&#8217;s also useful for <a rel=\"noreferrer noopener\" href=\"https://wordpress.github.io/wordpress-playground/docs/build-your-first-app#preview-pull-requests-from-your-repository\" target=\"_blank\">previewing pull requests from a repository</a> or setting up a local WordPress development environment using the <a rel=\"noreferrer noopener\" href=\"https://marketplace.visualstudio.com/items?itemName=WordPressPlayground.wordpress-playground\" target=\"_blank\">VisualStudio Code plugin</a> or <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/playground-tools/tree/trunk/packages/wp-now\" target=\"_blank\">a CLI tool called <code>wp-now</code></a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2023 22:09:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Mojeek Search Engine Adds WordPress’ Openverse to Image Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/mojeek-search-engine-adds-wordpress-openverse-to-image-search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2116:\"<img width=\"2292\" height=\"1320\" />\n\n\n\n<p><a href=\"https://www.mojeek.com/\">Mojeek</a>, a UK-based privacy-oriented search engine, has <a href=\"https://blog.mojeek.com/2023/07/expanding-mojeeks-image-search-with-openverse.html\">added Openverse to its image search</a>. For more than 15 years, Mojeek has provided independent, unbiased search without tracking or building profiles on users. It is one of just a handful of genuine search engines that uses its own technology and algorithms, unlike the metasearch engines that syndicate Bing, Google, and Yandex. In October 2022, Mojeek passed a major milestone of having <a href=\"https://blog.mojeek.com/2022/10/mojeek-now-six-billion-pages.html\">indexed more than 6 billion pages</a>. </p>\n\n\n\n<p>The search engine had previously provided Pixabay as the default for its image search with the option to use Bing as an alternative.</p>\n\n\n\n<p>&#8220;We have always wanted to eventually get rid of Bing,&#8221; Mojeek Head of Marketing Joshua Long said. &#8220;Due to both Microsoft&#8217;s API pricing decisions, and informed comments by people using Mojeek to search the web, we recently took that step.&#8221;</p>\n\n\n\n<p>Openverse&#8217;s openly-licensed media was a natural fit for the independent search engine. In 2021, Creative Commons Search was <a href=\"https://wptavern.com/creative-commons-search-is-now-openverse\">rebranded to Openverse</a> when it came under the umbrella of the WordPress open source project. With more than 700 million Creative Commons licensed and public domain image and audio files, Openverse exceeds Pixabay&#8217;s 4 million+ royalty-free and stock images, greatly expanding users&#8217; abilities to search deeper on more topics.</p>\n\n\n\n<p>Although Pixabay is still Mojeek&#8217;s default image search provider, users can change their <a href=\"https://www.mojeek.com/preferences\">preferences</a>, which are set using a local cookie and contain no personal data.</p>\n\n\n\n<p>&#8220;This addition is a testament to the utility that Openverse brings, as well as the ease and extensibility when it comes to using its API,&#8221; Long said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2023 20:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"Do The Woo Community: A Deep Dive into Sales Tax for Agencies and Freelancers with Kate Bacholzky and Roger Walker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75724\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/deep-dive-into-sales-tax-agencies-freelancers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:464:\"<p>Kate Bacholzky from Avalara and Roger Walker from americaneagle.com take you deep into sales tax for yourself and your clients.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/deep-dive-into-sales-tax-agencies-freelancers/\">A Deep Dive into Sales Tax for Agencies and Freelancers with Kate Bacholzky and Roger Walker</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2023 09:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: All about WordPress 6.3, a breadcrumbs block, design systems and an onboarding wizard – Weekend Edition 262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=24897\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://gutenbergtimes.com/all-about-wordpress-6-3-a-breadcrumbs-block-design-systems-and-an-onboarding-wizard-weekend-edition-262/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24302:\"<p>Howdy, </p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 release candidate</a> has been published and with it the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">Fieldguide</a> with the array of changes for developers is now available. It&#8217;s a lot to digest, so we&#8217;ll keep this newsletter short. Or rather focused on the upcoming major release. Pick and choose, depending on what&#8217;s important to your work with WordPress. </p>\n\n\n\n<p>If you have something on your Wishlist for WordPress 6.4, submit a comment: <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a> (until Aug. 15)</p>\n\n\n\n<p>Be well and have a fantastic weekend! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">All about WordPress 6.3</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-3\">Fieldguide Dev Notes WordPress 6.3 </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-g\">Gutenberg 16.2</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">All about WordPress 6.3</h2>\n\n\n\n<p>This week&#8217;s product walk through with <strong>Anne McCarthy</strong>, <strong>Rich Tabor</strong> and Nathan Wrigley is now available:  <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\"><strong>WordPress 6.3 Live Product Demo – Highlights &amp; Recording</strong></a>. </p>\n\n\n\n<a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\"><img /></a>\n\n\n\n<p><strong>Jonathan Patani</strong> also published the Q &amp; A from the Project Walk through on the Make Core blog: <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\"><strong>6.3 Live Product Demo Q&amp;A</strong></a>. You&#8217;ll learn that to add a footnote to a paragraph you just place the cursor where the number should go and use the drop-down menu from the block toolbar. Safe yourself the highlight step. Furthermore, &#8220;The revisions show changes for all styles, including changes made when viewing the stylebook.&#8221; Those are only two of the 14 questions and answers. You can also find a ton of resources that were shared during the walk-through. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Femy Praseeth</strong>, release squad member on the docs team, published a <strong><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a>. </strong>The best advice, I received when starting out in technology was: &#8220;If you want to learn anything in technology deeply, you try to explain it to others.&#8221; Here is your chance to do both. It&#8217;s also a high-impact contribution to the open-source project! As of this writing, there are still 42 tasks in the to-do-column of <a href=\"https://github.com/orgs/WordPress/projects/108/views/9\">the project board</a>, waiting for you! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On the WP Briefing <a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\"><strong>Episode 60: Mike Schroder gave a sneak a peek at WordPress 6.3 </strong></a>together with <strong>Josepha Haden Chomphosy</strong>. All links and transcript are shared on the post. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Carlo Daniele</strong> at Kinsta did again a wonderful job reporting on the upcoming major WordPress release. <strong><a href=\"https://kinsta.com/blog/wordpress-6-3/\">What’s New in WordPress 6.3: A Revamped Site Editor, a New Command Palette, Style Revisions, New Blocks, and Much More!</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Doc Pop </strong>at Torque Magazine<strong>, </strong>invited me to speak with him about WordPress 6.3 and what&#8217;s coming to WordPress Phase 3 and WordPress 6.4. <a href=\"https://www.youtube.com/watch?v=YxEUmifzGlM\"><strong>Torque Social Hour: Understanding WordPress 6.3 with Birgit Pauli-Haack</strong></a>. We discussed and demoed the new footnotes, Details block, Style Variation revisions, Site Editor updates, Stylebook and more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong>  highlights all the accessibility improvements that will come with WordPress 6.3 in this post: <a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\"><strong>WordPress 6.3 Accessibility Improvements</strong></a>,they co-authored with <strong>Joe Dolson</strong> and <strong>Alex Stine</strong>, members of the WordPress Accessibility Team </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland </strong>explains <a href=\"https://www.youtube.com/watch?v=aTq8v2EjG_I\"><strong>WordPress 6.3 explained in 240 seconds</strong></a>, He covers the two new blocks, Footnotes and Details, many of the Pattern changes, aspect ratio for image blocks, enhancements to the Site Editor, Style revision and more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>For all the WordPress News outlets, <strong>Anne McCarthy</strong> provided a <a href=\"https://nomad.blog/2023/07/17/wordpress-6-3-source-of-truth/\"><strong>Source of Truth for WordPress 6.3 </strong></a>document, actually it&#8217;s more like a book with over 8,000 words. In it, they list  every single feature and update that went into the WordPress 6.3 release, so journalists and bloggers can dig deeper into things and obtain the history, discussions, and overall genesis of a change. It&#8217;s a mammoth of a post. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Dave Smith</strong> published a video on the upcoming release: <a href=\"https://www.youtube.com/watch?v=PKcMhSgBt40\"><strong>WordPress 6.3 features in 6 mins &#8211; the power of the Site Editor is finally unleashed!</strong></a> Smith also shared a ton of links to details for the features, if you&#8217;d like to take a deeper dive. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-3\">Fieldguide Dev Notes WordPress 6.3 </h3>\n\n\n\n<p>The release doc team assembled a huge <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">Fieldguide</a> with all the Dev Notes covering the big and small changes to WordPress. Here is the list of Block editor related Dev Notes: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n</ul>\n\n\n\n<p><strong>But wait, there is more</strong>, quoted from the Fieldguide. </p>\n\n\n\n<ul>\n<li>Anghami has been added as a trusted oEmbed provider. (<a href=\"https://core.trac.wordpress.org/ticket/49850\">#49850</a>)</li>\n\n\n\n<li>Support for TikTok creator profiles has been added. (<a href=\"https://core.trac.wordpress.org/ticket/55784\">#55784</a>)</li>\n\n\n\n<li>A new&nbsp;<code>source</code>&nbsp;attribute is added to Block patterns allowing them to be filtered by that source. (<a href=\"https://core.trac.wordpress.org/ticket/58622\">#58622</a>)</li>\n\n\n\n<li>The&nbsp;<code>Themes REST API</code>&nbsp;can now indicate whether a theme supports the Site Editor by adding an&nbsp;<code>is_block_theme&nbsp;</code>property to each theme in the&nbsp;<code>wp/v2/themes</code>&nbsp;API response. (<a href=\"https://core.trac.wordpress.org/ticket/58123\">#58123</a>)</li>\n\n\n\n<li>A&nbsp;revisions&nbsp;endpoint for global styles,&nbsp;<code>/wp/v2/global-styles/revisions</code>, has been added to the REST API. (<a href=\"https://core.trac.wordpress.org/ticket/58524\">#58524</a>)</li>\n\n\n\n<li><code>WP_REST_Templates_Controller</code>&nbsp;has a new&nbsp;<code>modified</code>&nbsp;field for template and template part objects that returns post modified datetime for Templates. (<a href=\"https://core.trac.wordpress.org/ticket/58540\">#58540</a>)</li>\n\n\n\n<li>A new public function&nbsp;<code>wp_get_remote_theme_patterns()</code>&nbsp;has been added to query the&nbsp;<code>patterns</code>&nbsp;datum from&nbsp;<code>theme.json</code>&nbsp;and substitutes current usage of private APIs. (<a href=\"https://core.trac.wordpress.org/ticket/58460\">#58460</a>)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-g\">Gutenberg 16.2</h2>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\">Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.</a> with Anne McCarthy as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n</div></div>\n\n\n\n<p><strong>Sarah Gooding</strong> wrote about the latest Gutenberg release: <a href=\"https://wptavern.com/gutenberg-16-2-brings-improvements-to-pattern-management-introduces-vertical-text-orientation\"><strong>Gutenberg 16.2 Brings Improvements to Pattern Management, Introduces Vertical Text Orientation</strong></a> and highlighted, among other things, the vertical text orientation, illustrated by <a href=\"https://twitter.com/bph/status/1679464594283155458\">my tweet</a>. To enable the controls in the typography section, you need to turn it on via  the theme.json settings. </p>\n\n\n<pre class=\"wp-block-code has-primary-color has-border-background-color has-text-color has-background\"><span><code class=\"hljs language-json shcb-code-table shcb-line-numbers\"><span class=\"shcb-loc\"><span><span class=\"hljs-string\">\"typography\"</span>:{\n</span></span><span class=\"shcb-loc\"><span>      <span class=\"hljs-attr\">\"dropCap\"</span>: <span class=\"hljs-literal\">false</span>,\n</span></span><span class=\"shcb-loc\"><span>      <span class=\"hljs-attr\">\"fluid\"</span>: <span class=\"hljs-literal\">true</span>,\n</span></span><span>      <span class=\"hljs-attr\">\"writingMode\"</span>:<span class=\"hljs-literal\">true</span>,\n</span><span class=\"shcb-loc\"><span>}\n</span></span></code></span><small class=\"shcb-language\" id=\"shcb-language-11\"><span class=\"shcb-language__label\">Code language:</span> <span class=\"shcb-language__name\">JSON / JSON with Comments</span> <span class=\"shcb-language__paren\">(</span><span class=\"shcb-language__slug\">json</span><span class=\"shcb-language__paren\">)</span></small></pre>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Emily Shiola</strong> also checked out the latest Gutenberg version in her article: <a href=\"https://torquemag.io/2023/07/whats-new-in-gutenberg-the-latest-version/\"><strong>What’s New in Gutenberg: The Latest Version (July 2023)</strong></a> and updated her collection of highlights from every Gutenberg release back to Gutenberg 7.0. in November 2019. I bookmarked the post for later to walk down memory lane. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Nick Diego</strong> held a workshop on <a href=\"https://wordpress.tv/2023/07/18/builder-basics-goodbye-reusable-blocks-hello-synced-patterns-and-more/\"><strong>Builder Basics: Goodbye Reusable Blocks—Hello Synced Patterns (and more) </strong></a>and the recording is now available on WordPress.TV. Reusable blocks are a powerful way to save and reuse content across your site. In WordPress 6.3, reusable blocks will be renamed to “synced patterns.” In this online workshop, Diego explored the new functionality for creating custom patterns and managing them in the Site Editor.</p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-50_50 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/07/breadcrumbs-block.jpg?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\" target=\"_self\" rel=\"\"><span>Introducing the Breadcrumbs WordPress Block Plugin</span></a></div><div class=\"ngl-article-excerpt\">In 2009, I announced the release of my first breadcrumbs plugin. It was a one-file PHP script that I&rsquo;d been using in my themes for around a year, and I&hellip; <a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\" class=\"ngl-article-read-more\" target=\"_self\">Check it out</a></div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n<p>In her article: <a href=\"https://wptavern.com/ollie-theme-previews-new-onboarding-wizard-in-development\"><strong>Ollie Theme Previews New Onboarding Wizard in Development</strong></a>, <strong>Sarah Gooding</strong> reported on <strong>Mike McAlister</strong>&#8216;s newest work developing an onboarding experience that aims to drastically reduce the amount of time users spend setting up a new site. &#8220;McAlister said the interface is all React with largely native WordPress components and a few custom components sprinkled in to handle some of the more unique aspects of the tool.&#8221; she wrote. </p>\n\n\n\n<p><strong>Mike McAlister</strong> posted about the new onboarding Wizard on hit blog as well:<strong> I<a href=\"https://olliewp.com/in-pursuit-of-a-more-intuitive-onboarding-experience/\">n </a></strong><a href=\"https://olliewp.com/in-pursuit-of-a-more-intuitive-onboarding-experience/\"><strong>pursuit of a more intuitive onboarding experience</strong></a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>With LocalWP it is a straightforward tool to set up a new development site for testing or other purposes on your computer. With blueprints, you and configure a standard set-up with a set of plugins and themes. This week, <strong>Brian Gardner</strong><a href=\"https://wpengine.com/builders/frost-blueprint-local/\"> <strong>Introduced the Frost Blueprint for Local</strong></a>. &#8220;A Local Blueprint that draws inspiration from <a href=\"https://frostwp.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Frost</a>, our <a href=\"https://wordpress.org/themes/frost/\" target=\"_blank\" rel=\"noreferrer noopener\">open-source</a> WordPress block theme. This Blueprint showcases the power and extensibility of Full Site Editing.&#8221; he wrote. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> published the first part of his upcoming <em>Beyond Block Styles</em> series: <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\"><strong>Using the WordPress scripts package with themes</strong></a>. He walks you through the details of setting up your local development space to get ready for block development. &#8220;In Part 2, you’ll learn to design a set of custom block styles. Part 3 will bring it all together into a beautiful and functional editor control. From there, well, you’ll be building some amazing features.&#8221; Tadlock wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Yesterday&#8217;s Live Q &amp; A: <a href=\"https://www.youtube.com/live/6-Epjq3FYSs?feature=share\"><strong>Design Systems and theme.json</strong></a> with <strong>David Bowman</strong>, <strong>Alec Geatches</strong> and <strong>Joni Halabi</strong> was recorded and is available on YouTube. Shared resources</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge\">Repository for the design bridge</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge/blob/trunk/docs/design-tokens-example/README.md\">Tutorial</a> </li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/develop-your-first-low-code-block-theme/\">Develop Your First Low-Code Block Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/courses/#using-the-site-editor\">Using the Site Editor Courses: </a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Plugin Create-Block-Theme</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/41547\">Governing block settings and interactions</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-block-data-api/\">VIP Block Data API</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-governance-plugin\">VIP Governance plugin</a></li>\n</ul>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2023 on. Updated by yours truly.  <em><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">The index 2022 is here</a></em></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In last week&#8217;s Twitch stream, Ryan Welcher <strong><a href=\"https://www.twitch.tv/videos/1870840777\">explored the existing SlotFills for extending WordPress</a>.</strong>  It&#8217;s an longer version of a <a href=\"https://wordpress.tv/2023/06/30/developer-hours-exploring-editor-extensibility/\">previous talk at Developer Hours</a> a few weeks ago . He walks you through all the Slotfill existing in the post editor as well as the Site editor.  Welcher e also wrote about on the topic on WordPress Developer blog: <a href=\"https://developer.wordpress.org/news/2022/11/how-to-extend-wordpress-via-the-slotfill-system/\">How to extend WordPress via the SlotFill system</a> and presented<a href=\"https://wordpress.tv/2022/11/18/extending-wordpress-using-slotfill/\"> at WCUS 2022. </a></p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-50_50 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/live-q-a-leveraging-gutenbergs-architecture-to-take-plugin-development-to-new-levels/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/07/Gutenberg-LiveQA-Adams-Waldstein-Morita-Pauli-Haack.jpg?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/live-q-a-leveraging-gutenbergs-architecture-to-take-plugin-development-to-new-levels/\" target=\"_self\" rel=\"\"><span>Live Q &#038; A: Leveraging Gutenberg&#8217;s architecture to take plugin development to new levels</span></a></div><div class=\"ngl-article-excerpt\">In this YouTube Live Q &amp; A, participants learned how Gutenberg components and scripts can be used outside the block editor to revamp a plugin&#8217;s code base. Jason Adams, Director&hellip;</div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <a href=\"https://wordpress.org/photos/photo/690647f4cf/\">Plants growing out of the blocks at the Acropolis by Courtney Robertson found on WordPress Photos</a></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 22 Jul 2023 08:49:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Ollie Theme Previews New Onboarding Wizard in Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/ollie-theme-previews-new-onboarding-wizard-in-development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4051:\"<p>Unless you are some kind of wizard with the block editor, starting a WordPress website from a blank slate can be overwhelming and ultimately defeating. Mike McAlister, maker of the <a href=\"https://olliewp.com/\">free Ollie theme</a>, is developing an onboarding experience that aims to drastically reduce the amount of time users spend setting up a new site.</p>\n\n\n\n<p>&#8220;I suspect we’re cutting out a half hour or more of finagling a new WordPress site,&#8221; McAlister <a href=\"https://twitter.com/mikemcalister/status/1681038694239576064\">said</a>. &#8220;No more wrestling with a blank canvas.&#8221;</p>\n\n\n\n<p>The Ollie Onboarding Wizard creates a guided setup experience that allows users to add basic site settings, select a color palette, input their brand colors, add a logo and site icon, and move on to creating pages. It eliminates the necessity of hunting all these settings down inside blocks and the Site Editor.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1983\" height=\"1642\" />\n\n\n\n<p>Instead of having to create pages individually and assign them the correct template or place the right full-page pattern, Ollie onboarding makes it possible for users to simply check which pages they want automatically created.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1983\" height=\"1642\" />\n\n\n\n<p>&#8220;The goal of this wizard is to help WordPress users zoom through a site setup with the Ollie theme and abstract away those annoying and disconnected setup steps we have to do for every site,&#8221; McAlister said.</p>\n\n\n\n<p>&#8220;The wizard is also a way to educate users along the way. WordPress is going through a much-needed evolution, but as expected, users are having a tough time with the transition. Change is tough, especially when you power half of the internet. Workflows like this can help.&#8221;</p>\n\n\n\n<p>The onboarding interface leans heavily towards the design of the Site Editor to make it seem naturally at home inside WordPress. It demonstrates just how nice plugins and themes can look in the admin with a more modern interface, which could soon be a reality once the ambitious <a href=\"https://wptavern.com/wordpress-plans-ambitious-admin-ui-revamp-with-design-system-galvanizing-broad-support-from-the-developer-community\">admin UI revamp plans</a> are complete.</p>\n\n\n\n<p>&#8220;Months ago, Patrick Posner and I agreed that the future of WordPress is in the new Site Editor view, so that’s where we built this wizard,&#8221; McAlister said. &#8220;That assumption has since been validated, and because of that, our interface blends in seamlessly with native WordPress.&#8221;</p>\n\n\n\n<p>&#8220;This is just a v1, but we’re already planning on how to seamlessly integrate choosing a vertical with curated plugins (eCommerce, landing page, email marketing, etc.) and surfacing pro features to really bring this experience together. This isn’t just a WordPress theme.&#8221;</p>\n\n\n\n<p>McAlister said the interface is all React with largely native WordPress components and a few custom components sprinkled in to handle some of the more unique aspects of the tool. </p>\n\n\n\n<p>After previewing the onboarding wizard, some people have asked if it will be available as a standalone product. McAlister confirmed that he doesn&#8217;t have any plans of productizing it but if there is enough demand he is willing to entertain the idea. Others have asked if there is an API for developers to add their own sections.</p>\n\n\n\n<p>&#8220;No API yet, although with the announcements of the admin overhaul initiative, perhaps one is coming,&#8221; McAlister said. &#8220;Right now, this is just a custom React layer that mimics the site editor view. It’s built to be flexible though, so if a core solution opens up, we can migrate to that.&#8221;</p>\n\n\n\n<p>McAlister previewed the wizard on Twitter and in his newsletter, but it&#8217;s still in development and not yet available for testing. He plans to launch the Ollie theme on WordPress.org once the wizard is ready for public use.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 22 Jul 2023 01:03:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Gutenberg Times: Live Q &amp; A: Leveraging Gutenberg’s architecture to take plugin development to new levels\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=24919\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://gutenbergtimes.com/live-q-a-leveraging-gutenbergs-architecture-to-take-plugin-development-to-new-levels/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61388:\"<p>In this YouTube Live Q &amp; A,  participants learned how Gutenberg components and scripts can be used outside the block editor to revamp a plugin&#8217;s code base.  Jason Adams, Director of Development and Jon Waldstein, Lead Developer from GiveWP walked us through their approach to rebuilding their highly popular Donations plugin using WordPress native interface components and scripts and then also discussed how their code fits into the ecosystem. Lena Morita, a JavaScript developer on the components team. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-normal-font-size\"><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-connect-with-the-panelists\">Connect with the Panelists: </a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-resources\">Resources</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-strong-introduction-strong\">Introduction</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-strong-give-wp-plugin-architecture-strong\">Plugin architecture</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-strong-give-wp-plugin-revamp-strong\">Plugin revamp</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-give-wp-demo-strong\">Demo</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-strong-adding-interactivity-how-a-form-works-strong\">Adding interactivity &#8211; how a form works</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-strong-rendering-strong\">Rendering</a></li><li><a href=\"https://gutenbergtimes.com/feed/#8-strong-validation-strong\">Validation</a></li><li><a href=\"https://gutenbergtimes.com/feed/#9-strong-how-its-built-strong\">How it’s built</a></li><li><a href=\"https://gutenbergtimes.com/feed/#10-strong-give-wp-challenges-strong\">Challenges</a></li><li><a href=\"https://gutenbergtimes.com/feed/#11-strong-incorporating-react-strong\">Incorporating ReactJS</a></li><li><a href=\"https://gutenbergtimes.com/feed/#12-strong-trade-offs-and-compatibility-strong\">Trade-offs and compatibility</a></li><li><a href=\"https://gutenbergtimes.com/feed/#13-strong-support-team-strong\">Support team</a></li><li><a href=\"https://gutenbergtimes.com/feed/#14-strong-sidebar-customization-isolated-block-editor-strong\">Sidebar customization &#8211; isolated Block Editor</a></li><li><a href=\"https://gutenbergtimes.com/feed/#15-strong-making-it-easier-with-documentation-and-components-strong\">Making it easier with documentation and components</a></li><li><a href=\"https://gutenbergtimes.com/feed/#16-strong-some-hard-codes-strong\">Some things are hard-coded</a></li><li><a href=\"https://gutenbergtimes.com/feed/#17-strong-locked-blocks-strong\">Locked blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#18-strong-filters-and-blocks-strong\">Filters and blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#19-strong-announcements-and-contact-info-strong\">Announcements and contact Info</a></li></ul></div>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-connect-with-the-panelists\">Connect with the Panelists: </h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-18 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-16 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Lena Morita</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://profiles.wordpress.org/0mirka00/\">WordPress profile</a></li>\n\n\n\n<li><a href=\"https://twitter.com/mirka\">Twitter @mirka</a></li>\n</ul>\n</div></div>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Jon Waldstein</strong></p>\n\n\n\n<ul>\n<li><a href=\"mailto:jon@givewp.com\">jon@givewp.com</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://twitter.com/jonwaldstein\">Twitter @jonwaldstein</a>&nbsp;</li>\n</ul>\n</div></div>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Jason Adams</strong></p>\n\n\n\n<ul>\n<li><a href=\"mailto:jason.adams@givewp.com\">jason.adams@givewp.com</a></li>\n\n\n\n<li><a href=\"https://twitter.com/jasontheadams\">Twitter @jasontheadams</a>&nbsp;</li>\n</ul>\n</div></div>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-resources\">Resources</h2>\n\n\n\n<ul>\n<li><a href=\"https://poststatus.com/the-future-of-givewp-and-the-block-editor/\">Post Status: The Future of GiveWP and the Block Editor</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=wCN_M5xvPNY\">Video Walk-through</a> (9 months old, so it has improved since then)</li>\n\n\n\n<li><a href=\"https://givewp.com/lps/next-generation-donation-forms/\">GiveWP Next Gen Landing Page</a> (with ability to demo)</li>\n\n\n\n<li><a href=\"https://github.com/impress-org/givewp-next-gen/\">GiveWP Next Gen GitHub repository</a></li>\n\n\n\n<li>Blog post by Jason Adams: <a href=\"https://givewp.com/join-us-to-build-the-next-generation-of-wordpress-donation-forms/\">Join Us to Build the Next Generation of WordPress Donation Forms</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/isolated-block-editor\">Isolated Block Editor </a>(GitHub)</li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\"><strong>Transcript: </strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So welcome to our 34th Gutenberg Times Live Q&amp;A. My name is Birgit Pauli-Haack, and I&#8217;m your host and the publisher of the Gutenberg Times. Thank you all for attending the show and it&#8217;s so great to have you. So today as announced, we will discuss how a product company can leverage WordPress built in Gutenberg architecture to take plugin development to new levels.</p>\n\n\n\n<p>The team of GiveWP went all in on the approach and discovered new ways to build the new version of GiveWP Plugin. And we have the pleasure to meet two members of the technical team on the show and hear the genesis of the path and you can ask them questions. Before I introduce a panel, a few housekeeping notes. Speaking of questions, for those watching on YouTube, you can use the chat box next to the livestream and pose your questions and also chat with us or include where you&#8217;re watching from.</p>\n\n\n\n<p>I might not go over that very often, but we&#8217;ll definitely will look through the questions. And then here on Zoom, use the Q&amp;A bubble on the bottom of the screen or the jet bubble to share your thoughts and questions. Please be kind even if you disagree. This is a family friendly endeavor. If you might be wondering or your internet connection is not stable or you don&#8217;t have the time to sit through all of it, the recording will be available on YouTube later today after it&#8217;s fully rendered. Then the summary posts will be shared with the shared resources, will be on the Gutenberg Times within the next couple of weeks.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-strong-introduction-strong\">Introduction</h2>\n\n\n\n<p>So allow me to introduce our panel for today. Say hello, and let us know where you&#8217;re located tonight. I have the feeling that between the panel and the attendees, we span quite a bit of the globe. So I present to you, Jason Adams, director of development of GiveWP.</p>\n\n\n\n<p><em>Jason Adams</em>: Hi, I&#8217;m Jason. It&#8217;s good to meet y&#8217;all. I am from sunny San Diego, California.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Yeah. I&#8217;ll also present to you Jon Waldstein, the lead developer of GiveWP, and it&#8217;s all his fault. Oh, sorry. And then last but not least, my co-host, Lena Morita, who is a JavaScript developer and core contributor to the Gutenberg components and sponsored by Automattic. Hi, Lena.</p>\n\n\n\n<p><em>Lena Morita</em>: Hi, I&#8217;m Lena. I am based in Tokyo, Japan. It&#8217;s 2:00 AM right now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. So good morning, Lena. Good morning, everybody else? Yeah, Jason and Jon, yeah, are both on the West Coast.</p>\n\n\n\n<p><em>Jon Waldstein</em>: I&#8217;m on the East Coast, Rhode Island.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: East Coast, yeah. Rhode Island. Yes, sorry.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Happy to be here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, geography can be always a bit tricky for me.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-strong-give-wp-plugin-architecture-strong\">Plugin architecture</h2>\n\n\n\n<p>So let&#8217;s start at the beginning. Jason and I met at the post status get together at WordCamp US last year and you just had announced, GiveWP just had announced the start of the revamp of the GiveWP plugin, version 3.0. Widely distributed plugin for nonprofits and others to collect donations on website with various add-ons. Then you mentioned that you are building the new version on top of Gutenberg components and WordPress scripts and I found that fascinating. So before we dive in head first, let&#8217;s get everyone on the same plate. In short, Jason, what is GiveWP?</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so GiveWP number one donation plugin for WordPress. We have coming up on about 200,000 folks that use GiveWP to connect donations directly from their website, manage their donors and keep their nonprofits, which is largely our audience, running. Doing their day-to-day thing and not having to work too hard to bring in donations on there to keep their work going.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Yeah, GiveWP, I used it quite a bit when I was working for the agency, but what made you rethink the current architecture of your plugin?</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so first Give still works very much kind of, you remember the classic editor experience of WordPress where it was it kind of data entry, right? You didn&#8217;t design or build your pages, you entered data about your pages, the content and tags and all this other stuff, and then you click publish and then you view on the front end, what did I get? We know that that worked great for decades, but now we&#8217;re moving more to a visual era of building things. People want to be able to visualize and have that kind of full more immersed experience. That was our motivator, was wanting to go down that route. We had a lot of ideas for how we wanted to do that, but we had technical debt building as all products do that was making it more and more difficult to go down that path. Yeah, we started to weigh our options of how are we going to go about taking GiveWP to the next level.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Interesting. Yeah, the drag and drop, the visual editing, I think that&#8217;s kind of really where Gutenberg shines and having a plugin follow that path. How did you figure out the path forward? Because a revamp normally is really a big project and it&#8217;s a multi-year development project, so how did you go about it?</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, and we didn&#8217;t want to do a start from scratch kind of a thing. We wanted to iteratively build it out. So what&#8217;s been nice is that our underlying architecture for donations, donors, none of that&#8217;s changing. It&#8217;s just our forms. We first explored four years ago just building something proprietary and the reality was, it was not up to the standard that you see in Gutenberg and other sorts of things today. It&#8217;s a lot of work. It&#8217;s so easy to take for granted just the idea of a block, a thing that you can move up and down. It&#8217;s a fluid user interface, inner blocks, blocks inside a block. There&#8217;s so many things that are easy to take for granted when you go to set out to build something like this. We were like, &#8220;Well, it&#8217;s right there in Gutenberg.&#8221; And so we started to kind of peel it back and we knew that Gutenberg is not&#8230; Gutenberg is in WordPress, WordPress isn&#8217;t Gutenberg. You can go to the Gutenberg repository and it&#8217;s broken out into tons of packages.</p>\n\n\n\n<p>We just started installing stuff and we did what we call spiking, where we&#8217;re just trying out an idea for a fixed length of time. I think we gave one of our developers, might have been Jon or our other senior developer on the project, shout out to him, Kyle Johnson, one of them had a week to see what they could do. We were really surprised how much we were able to get up and running. Have the list view of blocks, have the block editor itself, have our own blocks loading, the inspector.</p>\n\n\n\n<p>It&#8217;s like you have so much that you can get up and running in such a short time that would&#8217;ve taken us months to achieve and it&#8217;s already so battle tested all of these packages. It&#8217;s hard to appreciate how much that&#8217;s worth by itself. Of course this is where WordPress is going. We didn&#8217;t want to have to reimagine an entirely new user experience and then train our users on how to use that. We wanted somebody to be able to go from working on a page or a post to a form and not have to relearn the whole journey, but to be like, this feels immediately familiar. It&#8217;s a little different, but it feels inherently familiar. Reducing that user friction from changing from context to context within WordPress, which I think is really important.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, it sounds right, a good path, but there are definitely some hurdles. So what were the first wins that you kind of say when your developer kind of set out, get a week, and then what was it exactly that they set out to do, but then found, &#8220;Oh, that is going to be fast to develop that in a week.&#8221; Normally development takes about four weeks or five weeks or something like that. Yeah. What are your first wins?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-strong-give-wp-plugin-revamp-strong\">Plugin revamp</h2>\n\n\n\n<p><em>Jason Adams</em>: Like I said, even the concept of a block, because for us, we have, and I&#8217;ll demo this in a moment here, but we have our sections and then our fields go in our sections, like name amount. To just have everything visually there and to have, &#8220;I want this field to be down there,&#8221; and making that as fluid user experience is not as easy as it sounds. Or we also have sections and fields inside of sections. So this inner block concept and then being able to select which blocks are visible based on what context you&#8217;re in. Or I click on a block and that block contextually shows up in the inspector. We achieved all of that within a week and I was like, &#8220;We have a lot of work to do.&#8221; But just the fact that we could get that far in such a short amount of time, those were the wins that were like, &#8220;Well, we don&#8217;t want to go reinvent this,&#8221; and it already is a familiar user experience, so it would be silly not to do this in short.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So I think that I find it fascinating and when you tried to describe it, I think it would be really helpful for us to have a short demo of the current state of your development so we can actually look at things and then I can see that we might have the first round of audience questions. What will you show us tonight?</p>\n\n\n\n<p><em>Jason Adams</em>: All right, let&#8217;s share my screen and show some stuff. All right. Can y&#8217;all see my screen?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, now we can.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"5-strong-give-wp-demo-strong\">Demo</h2>\n\n\n\n<p><em>Jason Adams</em>: All right, cool. So this is GiveWP very similar to how it is now, but I have a plugin, what we&#8217;re calling our feature plugin right now installed, called NextGen that anybody can actually go test out themselves. We have a landing page for this that we can share the link for that you can just go click spin up a site and it will just spin you up a site and you can be playing with it literally in 15 seconds.</p>\n\n\n\n<p><em>Lena Morita</em>: I tried this and it was really easy.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, thank you. So let&#8217;s see here. So I&#8217;ll add a new V3 form as we&#8217;re calling it. I won&#8217;t get into why it&#8217;s V3, but it is. So here you go. It&#8217;s funny, when we first showed this to people, it almost had an anticlimactic effect to it where they were like, &#8220;Well, what else would it look like?&#8221; Because it just fits right within WordPress. It&#8217;s like, &#8220;Oh, okay.&#8221; So you can see we&#8217;ve got the list view like you would normally have. We have our various sections, you can see everything within those sections. We&#8217;ve got the form itself. So a lot of this is very similar. Now you don&#8217;t have the fluid typing interface where you can just add paragraphs and paragraphs. You can&#8217;t just click somewhere and start typing. But that&#8217;s really neat is that you&#8217;re able to constrain how the block editor works, because for us, we don&#8217;t want people just typing in the forms. It doesn&#8217;t make sense for a form.</p>\n\n\n\n<p>Instead, people want to do something, like add a text field, and so we can just click on a section and we can add a text field, favorite color, we can mark it required. So I mean, as you see, it&#8217;s just Gutenberg. It&#8217;s the exact experience somebody would normally expect, but it&#8217;s tailored to how our forms work. And for us, we also wanted to do things like, if I come down here, I can only add a section. We wanted all fields to be within sections. So that&#8217;s a really subtle thing, that&#8217;s really powerful actually, because this is root level blocks here, and a root level block can only be a section. But then when I&#8217;m in a section and I want to add fields, well now Gutenberg knows what blocks can go in there and that&#8217;s not something we had to build. Gutenberg already has a concept of all of that kind of stuff.</p>\n\n\n\n<p>So I can come in here, you can click in and you can have that same&#8230; Gutenberg comes with a lot of what they call controls out of the box. So things like, I want to have inline text editing or something like that. That&#8217;s not something that you have to build. One other thing that I&#8217;ll point out here, is that if I go to add our blocks here, you can see that you have only our blocks. So we didn&#8217;t want to open up the form to every block that exists in WordPress. We thought about that, but we had very specific reasons why we didn&#8217;t. That&#8217;s another thing that&#8217;s really neat, is you can think of Gutenberg as creating your own sandbox environment for what you want to build. So you don&#8217;t have to think to yourselves like, &#8220;Oh my goodness, we have to&#8230;&#8221; So every block is open to this? No, you can make it limited to only your own fixed list of blocks.</p>\n\n\n\n<p>The other thing that is really neat that we&#8217;re able to do is add an additional tab over here that we call design. So this is breaking out a bit from what Gutenberg natively does. We wanted folks to have the ability to, in this view, we call it the builder view, which is where you&#8217;re focusing on the structure of your form. So it&#8217;s kind of a very vanilla, very plain looking, it&#8217;s just meant to be very clear. You can see with our donation summary here, it&#8217;s not really showing you anything real. It&#8217;s purely so that you can do things like I just want to position things where I want to have them in my form. So then you can switch over to the design tab and now we can actually view our form and this is the exact form as it&#8217;s going to render in the front end, and you can play around with secondary colors.</p>\n\n\n\n<p>So my secondary color in this form design is being used here. I can make this a nice little purple color, I can change the header, I can hide it, show it. You can do all sorts of fun things in here. But I mean that was pretty powerful of just the ability to add an entirely new type of experience within Gutenberg and giving people the ability to preview. For us, because Give forms are fairly widgety, right? We&#8217;re not trying to preview the entire page, just one thing, it worked out really nicely to be able to do it right within here.</p>\n\n\n\n<p>I&#8217;m trying to think what else. So the last thing that I&#8217;ll point out here, let me publish this. Let&#8217;s go to our form. Let&#8217;s take a look at it on the front end. Okay, so we&#8217;ve got our form here on the front end. I&#8217;m going to dive deep into the weeds here, it&#8217;s a dev audience, so just track with me. Okay, so typically when you&#8217;re working in Gutenberg, the way that we typically think of it saving is it saves as a string version to the post content. So you think of the Gutenberg HTML comments where it includes attributes and stuff about the block. You can load it dynamically and so on and so forth, but it saves to the post content column of the database. Then when you&#8217;re rendering the page, you grab that post content and you stick it on your page.</p>\n\n\n\n<p>Now for us, we didn&#8217;t want to just do that. We had to do a heck of a lot more. So if I fill this out, green for anybody who&#8217;s wondering. Then let&#8217;s throw on our test card, let&#8217;s say for five, donate. So I just made a real donation to my Stripe account. So a lot just happened there. That was obviously a lot more than just, &#8220;Oh, it looks like a form.&#8221; No, it has to actually work like a form. Forms submit data, forms store data. You can see here it&#8217;s referring to my favorite color that was stored in the donation meta. So has a lot that it needs to actually do and validate and all of this different stuff. What we did differently, is that when our forms save, so coming back here, so when I click update, it&#8217;s actually saving as JSON.</p>\n\n\n\n<p>So before Gutenberg turns into the big string that we know it to be, that saved content, it actually first stores as a JSON object. A bunch of blocks, block attributes, and then child blocks and so on and so forth. It&#8217;s a very simple structure actually. We&#8217;re doing nothing with the string content, we&#8217;re using just that JSON, and we built what we&#8217;re calling our field API and we&#8217;re converting the JSON structure into the field API. So this email address field, here it&#8217;s a block and then it gets converted into an email field on the front end, which is meaningful within GiveWP. So in other words, this is purely presentational so to speak and structural and we can convert it in any context we want. That&#8217;s a really powerful thing when you think about it, that you can take something like this, structurally speaking, and just convert it into your own API. So the block JSON, it&#8217;s focused on how is this all laid out within Gutenberg.</p>\n\n\n\n<p>When we load this page, literally all we&#8217;re doing is we&#8217;re grabbing that JSON that we save and we&#8217;re handing it back to Gutenberg and we say, &#8220;Here&#8217;s the form,&#8221; and that&#8217;s it. It just works. Then when we go to save it, we do the conversion and you can actually see that at play. If I just add another text field here, maybe. If I go to design, like that&#8217;s showing up here, because just as we&#8217;re working within, so even though I didn&#8217;t save it, that&#8217;s the kind of thing I&#8217;m showing there. Even though we didn&#8217;t save it, we&#8217;re still just grabbing that JSON object and converting it to our field API and rendering it that way.</p>\n\n\n\n<p>So I think for a lot of plugin developers and whatnot, I really want them to grasp the concept of Gutenberg is not just a way of being able to lay things out and then you just have to take whatever it gives you and slap it on the page and there you go. It&#8217;s like, no, you can use it as a tool for interacting with your user and then you can convert it into whatever context you can imagine. And that&#8217;s a pretty powerful thing.</p>\n\n\n\n<p>I think that&#8217;s it for what I had in mind for demo. Anything that anybody wants me to show a little more or poke into here?</p>\n\n\n\n<p><em>Lena Morita</em>: I have a question. So on the front end, on the actual front end form, how are you adding interactivity? Like the JavaScript parts?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"6-strong-adding-interactivity-how-a-form-works-strong\">Adding interactivity &#8211; how a form works</h2>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so the way this works is that, so it takes the Gutenberg JSON, converts it into the field API, and then that is serialized and this is an iframe. Inside the iframe is a React application that&#8217;s just running independently. The React application takes in the form and then it connects to things like gateways, other add add-ons, that sort of a thing. But yeah, that&#8217;s where it&#8217;s coming from. This is just a React application of our own design, built specifically for Give forms.</p>\n\n\n\n<p><em>Lena Morita</em>: So basically field API converts all that JSON data into actual React components and stuff?</p>\n\n\n\n<p><em>Jason Adams</em>: The field API is a PHP layer.</p>\n\n\n\n<p><em>Lena Morita</em>: Oh.</p>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s pure just PHP objects, but it&#8217;s focused. Whereas the Gutenberg API is focused on blocks and child blocks, attributes, that sort of thing. Our field API is focused on how does a form work. So for example, is this a field? Is this field required? What are the validation rules for this field? Does it have any sanitization that needs to happen? So things that you would typically think about from a field or field form perspective, that&#8217;s what the field API thinks about.</p>\n\n\n\n<p>It was also really important to us that developers could programmatically&#8230; So if I want to programmatically move a field, add a field, add a section, do anything, you can do it using our field API in PHP. So you can kind of add a middleman layer between Gutenberg, a programmatic layer to be able to make more adjustments to your form. Then that&#8217;ll just show up here. For example, when I submitted this form down here, how does it know that this is a required field and what does that even mean, right? Because it has to validate on the other side. So when we submit this form on the server, it&#8217;s grabbing the form again in the structure of the field API, it&#8217;s finding the favorite color field, and then it&#8217;s checking the validation rules such as, &#8220;Hey, this is required,&#8221; or &#8220;It can only be up to 255 characters,&#8221; or whatever else. Does that make sense?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah. So wait, the initial render of this form is not in PHP, I think you said this was initially rendered in React, or is it actually a PHP rendered page?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"7-strong-rendering-strong\">Rendering</h2>\n\n\n\n<p><em>Jason Adams</em>: I know there&#8217;s so many layers.</p>\n\n\n\n<p><em>Lena Morita</em>: It&#8217;s so interesting.</p>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s no worries. The field API lives in memory and PHP. That can be used both for rendering a form or validating a form or doing any number of things. This form represented in memory and PHP and it knows all the responsibilities of that form. Then we say, &#8220;Hey, I want to render that. That&#8217;s what I want to do this time.&#8221; And so then what it does is it, I think it&#8217;ll show you, it serializes everything. I thought it would show here. That&#8217;s fine. But anyway, it takes the whole field API structure, the form, all of its internal fields, elements and so on and so forth, serializes that, passes that to the front end, which is received by a React application.</p>\n\n\n\n<p><em>Lena Morita</em>: Oh, that&#8217;s how you hydrate it.</p>\n\n\n\n<p><em>Jason Adams</em>: Exactly. Yep. The React application is ready to receive a form in the structure of the field API JSON.</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, I&#8217;m not sure if everybody&#8217;s aware, but the interactivity API is kind of an experimental phase in Gutenberg right now. And this is a very hot topic. I feel like it&#8217;s on everybody&#8217;s minds. How do we hydrate interactive components on the front end? So it&#8217;s very intriguing how people have done this before any kind of ready-made abstraction layer.</p>\n\n\n\n<p><em>Jason Adams</em>: Right. There&#8217;s also the difference between, for example, I&#8217;m making a page, on my page I&#8217;m adding a component. This component is an accordion. It&#8217;s presentational, but there is a JavaScript element to it of, I want to be able to make interactivity happen on a presentational level versus what I&#8217;m describing here. It&#8217;s pretty complex, because there&#8217;s both a front end validation and server side validation, and we want them to be the same. There&#8217;s a lot of complexity around a form and what the form even does. So for us, our forms don&#8217;t just save and entry, our forms actually output into a donation and donor. So trying to capture the lightning in a bottle of boiling this down to interactivities, it&#8217;s like, well, it&#8217;s doing a lot more than just being interactive. It&#8217;s also validating and doing a whole bunch of other stuff.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"8-strong-validation-strong\">Validation</h2>\n\n\n\n<p>Actually, one thing I&#8217;ll show here if I switch to our multi-step design, so let&#8217;s just update this. Okay, we&#8217;ve got a completely different experience here. So now in this one, every single step, so when I do that, you notice there it kind of loaded for a moment in between steps? It&#8217;s validating with the server. So every single step is now validated against the server to make sure that everything here is in fact correct.</p>\n\n\n\n<p>Well, actually I have that differently set. Anyway, so if I were to try to continue, I&#8217;m going to get immediate validation feedback from the server. Even if you try to trick the JavaScript and make it not work and validate in the front end, it&#8217;s still going to validate on the server. So yeah, it&#8217;s a complex piece. So I think the interactivity API and stuff like that is really, really great for a lot of simpler forms of interactivity. But when you&#8217;re building what is in effect a small application, I think something like that is still a ways away from covering everything that we need this to do. Does that make sense?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, it makes a lot of sense. Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Totally sense for me too. Especially the other pieces, not only the validation of the form, but it&#8217;s also the connection with the external services like Stripe and the databases and all of that. Those need to be abstracted too and then kind of come back through the server API I would think, to then push it again to the front end in some other places.</p>\n\n\n\n<p><em>Jason Adams</em>: Exactly, because we don&#8217;t have a fixed list of gateways here. That&#8217;s injected. We also have our own add-ons, like fee recovery, form field manager, those add additional blocks and fields and those are injected at different points. It&#8217;s a highly customizable system, so there&#8217;s a lot going on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Super. Yeah. Well, do you have any other questions, Lena, to get them to show you something or shall we talk a little bit higher level now?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, we can go higher level.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much, Jason, for the demo. It&#8217;s fascinating, especially how the difference between before and now, because I only know the current version or the version three years ago and what you do now. So it&#8217;s a total different beast, I would say, as complexity, but also easy to use.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"9-strong-how-its-built-strong\">How it’s built</h2>\n\n\n\n<p>So just a ballpark, would you say from the code base, how much is actually based on the WordPress components and scripts and how much of that app do you have to rebuild kind of thing? So I would think the field API on PHP, that&#8217;s kind of the interface between those two as we saw.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Maybe it&#8217;s kind of an odd question. Yeah, I get that.</p>\n\n\n\n<p><em>Jason Adams</em>: Twenty-five percent. I mean a lot. Gutenberg definitely attributes to quite a bit.</p>\n\n\n\n<p><em>Jon Waldstein</em>: I could take that one.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, go for it, Jon.</p>\n\n\n\n<p><em>Jon Waldstein</em>: We built the donation form, the new one that you were seeing on the front end, completely from scratch. That whole thing with React serializing or hydrating data from the server, we did that from scratch, because our old forms were just using post types. So everything is server rendered, and it&#8217;s a little difficult to add that level of interactivity with React using the old system. So we really built it, the front end, from the ground up. The form builder that Jason was demoing is mostly things you can get from the Gutenberg package. We had to customize a couple things that we had to fork and call our own, mainly the sidebar that you saw where we have that design tab, that&#8217;s not something that&#8217;s available to us. So we had to create that and implement it on our own. But for the most part, what you&#8217;re seeing on the form builder can be achieved from Gutenberg packages.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So the sidebar, when you say that, I saw the controls that were there, they looked like Gutenberg components, the color, bigger, and the different kind of&#8230; Yeah. So that definitely might have come through that. Yeah.</p>\n\n\n\n<p><em>Jason Adams</em>: We barely invented anything in the inspector.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, and that&#8217;s the beautiful thing about using Gutenberg is if you want to create a block in our form builder, there&#8217;s nothing different about it than building a WordPress Gutenberg block. And we really wanted to make sure that was the case so that there&#8217;s nothing, no crazy documentation that you have to relearn. So we do have a community of developers that interact with GiveWP, external developers, and we want to preserve the customization of the plugin. So if you know how to build a block in WordPress, you&#8217;re going to know how to build a block for us as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, that&#8217;s awesome. Yeah. Well, this is all talking about the good sides, but were there any surprises or challenges that you encountered while you were building that, or are you still encountering? What are the biggest surprises that you&#8217;ve found?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"10-strong-give-wp-challenges-strong\">Challenges</h2>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah. Well, we mentioned we had to customize some components like the sidebar. But I think the one I want to mention is GiveWP is not just one plugin. We have a lot of add-ons that extend the functionality of GiveWP, whether it be gateways and different ways to customize your form. We have a lot of things that interact with our main plugin. One of the bigger challenges recently was figuring out how to open up our customized Gutenberg form builder with our add-ons. Now, another shout out to Kyle Johnson, who is a developer on our team who built the first iteration of the form builder. To get things up and running we used just React, Create React App, which ends up bundling all the scripts together into one JavaScript file. So when you load the form builder, you&#8217;re just loading a page and it&#8217;s just loading that one JavaScript file.</p>\n\n\n\n<p>What we found out later is that in order to load external blocks from our add-ons and other things that are interacting with the form builder, all of these different things are always reacting with certain dependencies like React. They can&#8217;t all load Gutenberg at the same time. It&#8217;s just not going to work, which is how the post editor works and why WordPress Scripts package came out is that you can extract all the dependencies from your script and let WordPress load those for you. So that was a big kind of structural change we had to make so that we are now relying on WordPress to provide us with Gutenberg, which is actually something we didn&#8217;t want to do. We wanted to have full access to the latest version of Gutenberg, but it wasn&#8217;t possible for us, because we have add-ons that also need to interact with Gutenberg and React, and they can&#8217;t all just be loading their scripts at the same time. It&#8217;s just not going to work.</p>\n\n\n\n<p>Like most of us know, wp_enqueue_scripts, you add an array of dependencies that you want your script to use, and WordPress will load those for you. And that&#8217;s how we had to go about loading our form builder and then having add-ons come in and give us a block or give us something to customize the form builder and just let WordPress handle loading external scripts. That was the big one.</p>\n\n\n\n<p><em>Jason Adams</em>: I&#8217;ll add to that.</p>\n\n\n\n<p><em>Lena Morita</em>: I&#8217;m curious.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"11-strong-incorporating-react-strong\">Incorporating ReactJS</h2>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s easy to take for granted that the Gutenberg team had to tackle this issue of we&#8217;re creating a single React tree. We don&#8217;t want everybody to load their own version of React, and it has to all end up in the same place. So I remember when Gutenberg first came out and there&#8217;s the Gutenberg elements, they tucked React inside of Gutenberg, why&#8217;d they do that? And why did they come out with WP-Scripts that just swaps out for you&#8217;re doing at WordPress/components? What actually that does, is it grab it from WP.components. It&#8217;s like why is it doing all this? Well, the reality is, they went through all of the hard work of figuring out how to have everybody using the same version of React and loading everything to the same React tree all at the same time from 1,000 different places.</p>\n\n\n\n<p>That&#8217;s actually a lot harder than it sounds. Once we ran into that, we were like, &#8220;Okay.&#8221; We just had to switch everything to using WP-Scripts, because we&#8217;re like, &#8220;It&#8217;s just not worth it for us to try to solve the same problem of extensibility that Gutenberg itself has already solved so well.&#8221; It has some trade-offs, but it really, as a whole, it actually works quite well. So huge shout out to the Gutenberg team, because originally we actually had the first version of this loading in GitHub pages. It was literally totally standalone, but then we tried to extend it and we&#8217;re like, &#8220;This is a lot harder than we thought it would be.&#8221; Yeah.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"12-strong-trade-offs-and-compatibility-strong\">Trade-offs and compatibility</h2>\n\n\n\n<p><em>Lena Morita</em>: So speaking of trade-offs, I&#8217;m also sympathetic with the major downside of this. As a plug-in developer, you cannot rely on any version being in action at any moment. It&#8217;s very hard. Upstream changes can break your app at any moment. You don&#8217;t know what versions running. What are some things you&#8217;re doing to mitigate this risk I guess?</p>\n\n\n\n<p><em>Jon Waldstein</em>: We have to manually test it now. Before, if we were loading the latest version of Gutenberg, well, there&#8217;s only one instance of that. But since we&#8217;re loading Gutenberg from WordPress now, we actually had to bump up our minimum version of WordPress to whatever the version of Gutenberg that we support that comes with WordPress. That&#8217;s a major change for us, but it&#8217;s necessary.</p>\n\n\n\n<p><em>Jason Adams</em>: We previously supported back to WordPress 5.0. So this whole thing actually made us come up with an entirely new policy around which versions of WordPress do we support. Before it was like we would support a version of WordPress until we were like, &#8220;I guess there&#8217;s something that we really need,&#8221; then we would bump it up to&#8230; We were talking about bumping it up to 5.5 or something like that, but we saw no reason to cut backwards compatibility until we had a specific reason to do so. This whole thing made us realize like, &#8220;Oh, we&#8217;re really tightly coupled now.&#8221; We&#8217;re really on the WordPress bandwagon and it&#8217;s really important what versions we support.</p>\n\n\n\n<p>We didn&#8217;t invent this, other plugins are doing this, but we said, &#8220;Okay, we&#8217;re only going to officially, moving forward, support the latest released version of WordPress and the previous two.&#8221; That&#8217;s how we&#8217;re going to keep ourselves from getting into compatibility hell as new changes roll in that we have to become compatible for. Then that makes it harder and harder to be compatible with older versions. So we&#8217;re having to really kind of tighten in on that window. Fortunately, I will say, according to our telemetry, people are actually pretty darn good at staying within the latest or a few most late recent latest versions of WordPress. We don&#8217;t have a lot.</p>\n\n\n\n<p><em>Lena Morita</em>: That&#8217;s good to know.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"13-strong-support-team-strong\">Support team</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I was thinking so, what is your customer servicing to that? Yeah, because I can see that there are quite a few nonprofits that have not updated their WordPress for a while. But they could stay on your older version of GiveWP because it&#8217;s still supported, and you&#8217;re not going to cut it out right there.</p>\n\n\n\n<p><em>Jason Adams</em>: So a good product question there. So our support team is actually very much in support of it. What we&#8217;ve found is that typically people fall into one of two camps. One, they&#8217;re set it and forget it. They set up their website five years ago, and it works, so don&#8217;t touch it, right? And that&#8217;s perfectly fine. Or you have people that keep things fairly up to date. You don&#8217;t have many people that are in this weird middle space where they update some stuff and not others. And if somebody does reach out to our support team and is having an issue or something, our team is trained. One of the first things they do is they say, &#8220;Are you updated?&#8221; So it&#8217;s not like they&#8217;re going to have to suddenly change their tune, because of this new policy. It&#8217;s something we&#8217;ve already recommended to people for years is, if you&#8217;re having a problem, you should start by updating what you have to make sure that&#8230; because the problem might be fixed already and you&#8217;re just not updated.</p>\n\n\n\n<p>So yeah, we&#8217;re really not anticipating, and others like the events calendar and others have had this policy for a while, and so I did ask around within the product space, &#8220;Hey, was this a pain point for you? Did you notice a decrease in sales or higher churn rate?&#8221; The answer was unanimously, &#8220;No. No, actually, it&#8217;s a very healthy policy to have and it hasn&#8217;t caused us problems.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So we have one more question from Anton, and I think it goes back quite a few minutes, he was asking about the sidebar if that is accomplished through slot fills.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"14-strong-sidebar-customization-isolated-block-editor-strong\">Sidebar customization &#8211; isolated Block Editor</h2>\n\n\n\n<p><em>Jon Waldstein</em>: That one, no, we actually had to fork that. But I wanted to bring up the isolated block editor, which Lena works on or has worked on, because we&#8217;ve been following that project for a little while now. I think at its inception we were also building ours, which our form builder is very similar to how the isolated block editor works. One of the biggest problems was the sidebar customization, which to answer Anton&#8217;s previous question, if you were to use isolated block editor now, you can accomplish that with technically a slot fill, because we submitted a feature request to do that, and it was actually added just recently.</p>\n\n\n\n<p>It makes it a little bit more feasible to actually switch over to the isolated block editor shortly, because we&#8217;re really not doing anything crazy. That was kind of the main thing about using WordPress as dependencies. It&#8217;s like we&#8217;re really not customizing anything that crazy. We&#8217;re just using Gutenberg. We&#8217;re not like forking every single thing. We&#8217;re loading a bunch of blocks into it and maybe doing some style changes. So it should be pretty reliable. But we are looking at the block editor, the isolated block editor, as a way forward for this. I would suggest it for anyone else looking at this project or looking at something similar to this, because it&#8217;s a really easy way to get started.</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, I agree.</p>\n\n\n\n<p><em>Jason Adams</em>: Played around using it and realize like, oh, it has things like undo, redo. We don&#8217;t have that right now, but if you use the isolated block editor, you just have it. So yeah, part of our post 3.0 launch roadmap is to switch the isolated block editor, which will also take a lot of complexity off of our plate.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Excellent. So I have another question. I&#8217;m so happy that I&#8217;m privileged to run this show so I can ask all the questions that I want.</p>\n\n\n\n<p><em>Jason Adams</em>: Go for it.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"15-strong-making-it-easier-with-documentation-and-components-strong\">Making it easier with documentation and components</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You started kind of three, four years ago thinking about it and maybe a year and a half or two years ago, really doing proof of concepts and all that. So put yourself back into the shoes you would start out now, because that would be something that plugin developers might think about. What is it that you would ask of the Gutenberg team to improve or to build on the components or on the scripts so that work is a little easier? Or much easier, not just a little easier.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Documentation has been a little bit of a struggle for us, especially being like&#8230; And we understand we&#8217;re no experts at documentation. It&#8217;s tough work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Can you specify a little bit on the documentation? Which piece?</p>\n\n\n\n<p><em>Jon Waldstein</em>: Well, if you know are going down the path of building your own block editor, there&#8217;s very little documentation on there. If there is, it&#8217;s a little outdated. We had to do a lot of digging through reading code and finding how to actually pull this thing off that didn&#8217;t quite match up with some of the documentation out there. So that was one of the biggest hurdles. Then also some components in Gutenberg are not accessible that we wanted to pull out and use ourselves. So some of those were just not exported. Maybe they&#8217;re just internal components. We found ourselves really wanting to, and we did use some of these components, but once we switched over to relying on WordPress to provide us the scripts, we lost some of those, because they&#8217;re not available. I would have to come up with a list to give you…</p>\n\n\n\n<p><em>Lena Morita</em>: With the block editor package? In the block editor package, you mean?</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, block editor. Maybe some more. We would have to define the path to the actual build component to grab, and sometimes those were missing from the exports. We would often have to fork the whole file, which causes side effects, because it&#8217;s relying on some things. So limiting that was tough at first, but we kind of worked around it. I would&#8217;ve to come up with a list to figure out which ones are really important to people like us.</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, please send me that list. I&#8217;m interested. There is something about it.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah. Some of these would be documented like, &#8220;Hey, they&#8217;re available,&#8221; and then you&#8217;d go to use them and they&#8217;re just not.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I know that Ryan Welchers is actually on the path to put example code into the read me files and all that, and he found quite a few that if you want to use that code snippet, you couldn&#8217;t, because it didn&#8217;t export. So he actually goes through it and while he is updating the documentation to also add the export feature to it. So I didn&#8217;t find it yet now quickly, that little issue or the tracking issue of that, but I can certainly share that with you and in the show notes and also with you personally, so you can add to the list so you don&#8217;t have to start from scratch. Have you, speaking of documentation, there&#8217;s also a separate documentation site that&#8217;s called The Storybook for the components. How did that help you?</p>\n\n\n\n<p><em>Jon Waldstein</em>: That was helpful. I&#8217;m not sure how complete it is or how up to date it actually is.</p>\n\n\n\n<p><em>Lena Morita</em>: It&#8217;s getting more complete by the minute.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, there were some things on there that were very helpful.</p>\n\n\n\n<p><em>Lena Morita</em>: It&#8217;s really nice right now. We spent a lot of time on it this past year.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, I love the idea of that. There&#8217;s different documentation sites. We&#8217;re not really sure which ones are up-to-date. So maybe add a version to what thing was added, that would be helpful.</p>\n\n\n\n<p><em>Jason Adams</em>: That&#8217;s a really important note, I think. If you go to some documentation sites out there, I think React does this or Stripe does this, where the docs themselves are versioned. That&#8217;s really helpful, because otherwise that&#8217;s been a part of our struggles. We&#8217;ll find some piece of documentation on Gutenberg and we&#8217;re like, &#8220;Is this old? Is this current?&#8221; We just don&#8217;t know how to trust it. So we always end up going back to the source code anyway to validate the documentation that we found to make sure that it is in fact still recent.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, totally get that. Especially because the documentation is actually built on top. The automation of the references is actually built on top of the Gutenberg plugin, but it doesn&#8217;t tell you that when you look at it. You are looking for something and you find it and then you try it out on WordPress without the plugin and the feature isn&#8217;t there yet, because it&#8217;s coming. It&#8217;s one of the upcoming kind of things. So I totally get this. Yeah.</p>\n\n\n\n<p><em>Lena Morita</em>: This is on our radar, definitely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. Yeah.</p>\n\n\n\n<p><em>Lena Morita</em>: We&#8217;ll try to push for this.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"16-strong-some-hard-codes-strong\">Some things are hard-coded</h2>\n\n\n\n<p><em>Jason Adams</em>: One other minor thing on the original question I&#8217;ll add is, there are still some things in Gutenberg that are hard coded that you can&#8217;t really do anything about. One that we&#8217;re kind of just hoping nobody notices is if you click on a block and then there&#8217;s little header piece of the block there and there&#8217;s a contextual menu and options that drops down where you have things like copy styles or paste styles or that sort of a thing, we can&#8217;t get rid of that. Copying and pasting styles makes no sense in our context. We looked into it. That&#8217;s just hard coded. You can&#8217;t get rid of that. It&#8217;s just there. I was like, &#8220;Oh.&#8221; So there are still little pieces like that that you&#8217;re just like, &#8220;Well, hopefully nobody will notice that.&#8221; And then the last thing with Gutenberg that we ran into that is like, &#8220;This is interesting,&#8221; is well, not the last, another is…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I&#8217;m sure it&#8217;s not the last, yeah.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"17-strong-locked-blocks-strong\">Locked blocks</h2>\n\n\n\n<p><em>Jason Adams</em>: &#8230; locked blocks. So that&#8217;s kind of an interesting concept where, for example, you have to have an amount field for us. You can&#8217;t take that out and still have your form work. So you can lock the block, but then they can go unlock the block. So locking something, it&#8217;s more like a pinky promise with the user, like please don&#8217;t get rid of this. I think it used to be that locking was like it was done. There was no way to unlock something, and then the UI was added in the list view to be able to unlock things. That was kind of an interesting one of like, &#8220;Oh, well, how do you actually enforce that something can&#8217;t be removed? You should not be able to delete this.&#8221;</p>\n\n\n\n<p>Then the other thing that we found that was interesting with locked blocks, is that if you have a locked block in one as a child block, so we have our two sections, if I have my amount block up here, when it&#8217;s locked, I can&#8217;t move it. So you can&#8217;t take it out of this section and move it into this section. If you drag and drop, it just will do nothing. So there&#8217;s just little itty-bitty things like that that kind of pop up. So the concept of what locked means in Gutenberg is a little bit, you kind of just got to play with it to find out what does lock even mean?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah.</p>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s not clear and consistent, I would say.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"18-strong-filters-and-blocks-strong\">Filters and blocks</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah. So in the last few versions of WordPress, there were server-side filters as well as client-side filters to customize your blocks and to curate the experience and switch off interfaces and all that through PHP filters or server side or JavaScript filters. Have you been able to mitigate some of the problems that you saw before?</p>\n\n\n\n<p><em>Jason Adams</em>: With the locked stuff that we talked about?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So Nick Diego just posted on the developer blog a new&#8230; So how to modify theme.json data, which is kind of part of it. Yeah, that&#8217;s the style part, but it&#8217;s also block styling. Oh, I can share it here. Whoops.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Oh, I&#8217;ll mention one. I&#8217;ll shout out to one filter that we just found extremely useful is the JavaScript filters for registering a block type, which really was amazing because now we can have core blocks. Let&#8217;s take the amount field or something, and we can have an add-on come in and add more settings or attributes to that block using the register block type. There&#8217;s a couple other filters for doing that where you can add things to a block that wasn&#8217;t there before. That&#8217;s new to me that you could do that natively, but for us, that was huge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s a little late in the game. Yeah. Yeah, I&#8217;m sorry, but we are getting to the end of our show. It was only scheduled for an hour. I think we could talk another two hours. I feel that way. And I don&#8217;t know, Lena probably has even more questions for you.</p>\n\n\n\n<p><em>Lena Morita</em>: Definitely. So many questions.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: But it was such a great experience to have you on the show and to share some of the secrets that you encountered and how you made it all work for yourself. We will have some resources in the show notes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"19-strong-announcements-and-contact-info-strong\">Announcements and contact Info</h2>\n\n\n\n<p>At this point, I only have two more questions for you all three. So do you have any announcement that you wouldn&#8217;t get in before or you want people to keep in mind? We can go around Jason, Jon, and Lena. The second question is, if people want to get in touch with you, what would be the best way? So you can answer one of the questions, both questions or none.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so keep an eye out for Give 3.0 that will be landing at the beginning of Q3 is what we&#8217;re aiming for right now. You can go to the landing page, I provided the link for that and go spin it up and test it out yourself. We&#8217;re updating that. So as we roll out new internal versions of what we&#8217;re calling next gen, which is our 3.0, we&#8217;re updating that and we actually have it all set up. So if you do have that installed locally and we roll out a version, you can update it just like you would any other plugin and continue to test out, provide feedback. So we love getting feedback from folks on this. You can also reach out to me personally at <a href=\"mailto:jason.adams@givewp.com\">jason.adams@givewp.com</a>, or you can find me on Twitter as Jason.Adams.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. Thank you, Jon?</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, and I&#8217;ll mention for any other developers that are interested, what we&#8217;ve demoed and what we&#8217;re showing is completely public. You could go on GitHub and look at all of this code that we wrote. It took us over a year. I think we&#8217;re coming up on a year and a half or something, maybe a little less than that, but a lot of work has gone into it. If you want to see actually what we&#8217;re doing, come on to GitHub and if you want to ask some questions, you could start a discussion on GiveWP, or we have a Canny board for additional feedback. If you were to go to the landing page and actually play around with this thing, you can actually provide feedback and we&#8217;ll take all the feedback into consideration for the future of GiveWP. And if you want to get in touch with me, I&#8217;m on Twitter, Jon Waldstein and <a href=\"mailto:jon@givewp.com\">jon@givewp.com</a> if you want to send me an email.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. And Lena?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, I guess for me, I mentioned I work on the work path components package and me and the team that works on it, we really, really are always looking for new contributors. So if anyone&#8217;s interested in contributing back, we love working with new contributors. We are highly engaging and we collaborate a lot. So if anybody&#8217;s interested, just pick up an issue or I don&#8217;t know, ping me and we&#8217;ll help you find a fun, good issue to work on. You can find me on Twitter at Mirka, M-I-R-K-A. Same ID on GitHub.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. And so my link or my answer is that we will do another live Q&amp;A in two weeks actually, but on Friday, on Friday, July 21st. We&#8217;ll talk about design systems and theme.json. I know that there are large agencies and large entities like universities, and so they all have a design system. They have corporate design, and they need all the websites kind of to follow that. The WordPress VIPs team built a bridge between Figma and theme.json. I hope I get the people who created that on the show. We will have some demos there, of course. We also will talk with Joni Halabi, who is the web developer at Georgetown University, and she also has, as a university, big design systems and how she works with patterns. So it&#8217;s a great show and I hope you will join us again there.</p>\n\n\n\n<p>So a big thank you to our viewers and to Anton for the great questions. If you have more questions, you can always send them to me via email. That&#8217;s <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a>. P-A-U-L-I at gutenbergtimes.com. Recording, as I mentioned, will be available in a few minutes on the YouTube channel, and we&#8217;ll publish a transcript in a couple of weeks on gutenbergtimes.com.&nbsp;</p>\n\n\n\n<p>Thanks again to Jason, Jon, and Lena for being here. It&#8217;s been a privilege to have you on the show, and it was a great joy talking to you. Be well and goodbye and good luck. Take care.</p>\n\n\n\n<p><em>Jason Adams</em>: Thank you.</p>\n\n\n\n<p><em>Lena Morita</em>: Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Bye.</p>\n\n\n\n<p><em>Lena Morita</em>: Bye.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Bye, everyone.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 23:50:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"WPTavern: WordPress Contributors Demand Transparency and Objective Guidelines for Listings on Recommended Hosting Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://wptavern.com/wordpress-contributors-demand-transparency-and-objective-guidelines-for-listings-on-recommended-hosting-page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6958:\"<p>WordPress&#8217; <a href=\"https://wordpress.org/hosting/\">Recommended Hosting</a> page is a hotly contested piece of online real estate, and has recently come into focus again following the<a href=\"https://meta.trac.wordpress.org/changeset/12718\"> removal of SiteGround</a> from the listings. When the change was highlighted during a recent Meta team meeting, Audrey Capital-sponsored contributor Samuel &#8220;Otto&#8221; Wood <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1689199290876499\">said</a>, &#8220;Matt asked me to remove SiteGround because that page is getting revamped. I know no more than that.&#8221; Bluehost and Dreamhost are the only two hosts remaining on the page at this time.</p>\n\n\n\n<p>The process for being listed on the Recommended Hosting page has historically been <a href=\"https://wptavern.com/the-recommended-hosting-page-on-wordpress-org-starts-over-from-scratch\">shrouded in secrecy</a>, causing contributors to speculate that large sums of money were required. Although the current criteria is posted on the page, the process of getting listed and de-listed is not transparent. It&#8217;s not clear if and how the criteria is being applied, as it states that listings are &#8220;completely arbitrary:&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>We’ll be looking at this list several times a year, so keep an eye out for us re-opening the survey for hosts to submit themselves for inclusion. Listing is completely arbitrary, but includes criteria like: contributions to WordPress.org, size of customer base, ease of WP auto-install and auto-upgrades, avoiding GPL violations, design, tone, historical perception, using the correct logo, capitalizing WordPress correctly, not blaming us if you have a security issue, and up-to-date system software.</p>\n</blockquote>\n\n\n\n<p>WordPress co-creator Matt Mullenweg has recently hinted at the possibility of re-opening the survey, inviting contributors in WordPress&#8217; Hosting Slack channel to weigh in on questions or data the survey should collect &#8220;to help us discern who we recommend.&#8221; He linked to questions from the <a href=\"https://mcm.survey.fm/2023-wordpress-hosting-survey\">survey used in 2016</a> when the page was <a href=\"https://wptavern.com/the-wordpress-org-recommended-hosting-page-is-revamped-features-flywheel-for-the-first-time\">updated</a> to include Bluehost, DreamHost, Flywheel, and SiteGround.</p>\n\n\n\n<p>The new draft for the survey states: &#8220;It&#8217;s time to loop back and give every host an opportunity to be on the recommended page, and also make it international because we never really got recommended hosts in non-English countries right.&#8221;</p>\n\n\n\n<p>The WordPress Hosting team has been working on a related effort called &#8220;<a href=\"https://docs.google.com/document/d/1FhjFjY9I6gn6uqz4oBsHvYzxnrUg0RfAYuRhlLjdWec/edit\">Project Bedrock</a>&#8221; that aims to create a directory in which any hosting company that meets a series of predefined requirements can appear as recommended hosting or compatible with the WordPress CMS. </p>\n\n\n\n<p>&#8220;Yes, project bedrock is a goal,&#8221; Hosting team rep Javier Casares said. &#8220;Some months ago we left the project in stand-by to create a pre-version of the project, creating a list of hosting companies inside the Make/Hosting, a &#8216;everyone can be on the list&#8217; (if criteria) as a complement for the /hosting), but the idea is that /hosting, this pre-project or the project should have the same criteria (the base).</p>\n\n\n\n<p>&#8220;We know Matt is the responsible for the /hosting, our idea is creating a &#8216;longer list&#8217; for the Hosting Handbook / page at Make/hosting. The idea is having the same criteria. So, both are complementary.&#8221;</p>\n\n\n\n<p>Although contributors to the project view it as complementary to the official recommendations, it may be confusing for WordPress to have multiple similar hosting resources with the same criteria but different listings. These appear to be conflicting efforts that have a lot of overlap but may ultimately be at odds with the goal of simplifying the host selection process for new WordPress users who don&#8217;t know which ones to consider.</p>\n\n\n\n<p>Casares suggested a few technical criteria that the survey should focus on, including PHP versions, database versions, SSH access, automatic updates, one-click WordPress installation, free TLS certificates, backup, and more.</p>\n\n\n\n<p>The 2023 survey is still in the early stages in draft form. WordPress Hosting team contributors suggested that requirements for revamping the page would be a good topic for discussion at WordCamp US&#8217; upcoming Community Summit next month.</p>\n\n\n\n<p>In the Post Status hosting channel, Namecheap co-founder Matt Russell suggested Mullenweg leverage <a href=\"https://wphostingbenchmarks.com/\">WPHostingBenchmarks</a> performance data. </p>\n\n\n\n<p>&#8220;[WPHostingBenchmarks is] probably the most open, fairest, and long-term performance evaluation in the WP space,&#8221; Russell said. He also recommended Mullenweg revamp the page as more of a directory with options to select budget, regions/country, and more.</p>\n\n\n\n<p>Review Signal founder Kevin Ohashi, who publishes the WPHostingBenchmarks site, shared concerns about transparency that he has had since the last time the page was updated:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Who is reviewing this information? What criteria will be used in evaluating them? I know last time you said you were involved, as were other folks from Automattic. Automattic is a competitor in the hosting space, and no matter the hat being worn, there is some concern over sharing sensitive business info with a competitor.</p>\n\n\n\n<p>Getting listed on that page is likely worth millions of dollars to any company in terms of business generated. I think the process and criteria should be transparent and clear from the beginning. I also think who is involved with evaluating should be known beforehand as well. At least give companies, and consumers, the information they deserve to evaluate participating and the outcome.</p>\n</blockquote>\n\n\n\n<p>Ohashi recommends that no person employed by a hosting company should be involved in the evaluation of submissions. This would eliminate bias from competitors in the space trying to suppress those they deem to be a threat.</p>\n\n\n\n<p>&#8220;I&#8217;d like to see more ethics and accountability, a code of ethics for any company getting listed would be a positive in my mind,&#8221; Ohashi said. &#8220;Companies should be competing on quality and product, not on astroturfing, deceptive billing practices and other shady behavior we often see in the space. In my benchmarks, I push measuring default performance because I believe that benefits the greatest number of customers. I think there&#8217;s an opportunity to push for a better ecosystem here and would love to see you take it.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 21:42:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WordPress.org blog: WordPress 6.3 Live Product Demo – Highlights &amp; Recording\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7537:\"<p>WordPress 6.3 ships on August 8th! For a sneak peek of what&#8217;s to come, members of the 6.3 release squad, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, held a live demo moderated by <a href=\"https://profiles.wordpress.org/njwrigley/\">Nathan Wrigley</a>.&nbsp;</p>\n\n\n\n<p>More than 100 attendees watched as some of the most anticipated product features were demonstrated, from the brand-new Command Palette to new design tools and more.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>6.3 Live Product Demo\n\n\n\n<p>Here are some of the key takeaways from the 6.3 live product demonstration.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette’s big debut</h2>\n\n\n\n<p>One of the most anticipated features of 6.3 is the <a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Command Palette</a>. It lets you quickly navigate and open different WordPress functions within the post and Site Editor. Access it using a shortcut command (Command + K or Control + K).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Page creation gets easier in the Site Editor</h2>\n\n\n\n<p>Now you can browse and edit pages within the Site Editor, providing a more cohesive WordPress experience. A new drafting flow debuts, allowing you to create and publish pages directly within the editor.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Synced Patterns set to replace Reusable Blocks</h2>\n\n\n\n<p>You can create and manage all your patterns directly in the Site Editor. Once edited, all synced patterns (previously called Reusable Blocks) will change across a site—a huge time saver when making changes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Stay on top of design changes with Style Revisions</h2>\n\n\n\n<p>This enhancement offers a visual timeline of your site so you can see all the revisions in your site’s history and restore a previous style with just a click.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">New design tools and blocks</h2>\n\n\n\n<p>Controls for specifying aspect ratios to ensure design integrity, especially when using images in Patterns debut in 6.3, along with new blocks for Footnotes and Details. Easily add footnotes to your content and have them automatically linked to the corresponding text. With the Details block, hide or display content to create spoilers or accordions.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance</h2>\n\n\n\n<p>WordPress is getting faster with 6.3 as content with images will see speedier load times. Both theme types (Classic and Block) will also benefit from performance improvements. The upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is an excellent opportunity to learn more about performance enhancements directly from the WordPress Performance team.</p>\n\n\n\n<h2 class=\"wp-block-heading\">More from Core</h2>\n\n\n\n<ul>\n<li>Revert to previously installed versions when <a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">manual updates for themes and plugins fail</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support</a> for PHP 5. The new minimum supported version of PHP will be 7.0.0. The recommended version of PHP remains at 7.4 or greater.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">Accessibility updates</a>, especially for List View and the broader Site Editor experience.</li>\n\n\n\n<li>Improvements to internationalization <a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">just-in-time translation loading</a>.</li>\n</ul>\n\n\n\n<p>These new features and more await you as Phase 2 of the <a href=\"https://wordpress.org/about/roadmap/\">WordPress Roadmap</a> comes to a close with the 6.3 release.</p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\">question and answer session</a> followed the demo, with attendees asking plenty of great questions. The panelists shared links for additional reading regarding many new features—all conveniently added to the end of this post.&nbsp;</p>\n\n\n\n<p>A big thank you to everyone who helps make WordPress. Contributors power every WordPress release. Without the hundreds of contributors worldwide who help build WordPress, this live product demo wouldn’t have been possible. Thank you for all of your hard work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">References from the Live Demo</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/comparing-patterns-template-parts-and-reusable-blocks/\">Comparing Patterns, Template Parts, and Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">The 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support for PHP 5</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">Internationalization Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/30496\">#30496 Site Editor: MVP Customizer Compatibility/Integration</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/52128\">#52128 Customization Ongoing Roadmap</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/building-sidebars-with-the-site-editor/\">Building sidebars with the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/richtabor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>richtabor</a> and <a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a> for reviewing this post and to <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>, and <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a> for their logistics support to run the event.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 19:26:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 10 Aug 2023 04:54:33 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Thu, 10 Aug 2023 04:45:31 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 5\";}}s:5:\"build\";s:14:\"20230418100512\";}','no'),(20750,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1691686474','no'),(20751,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1691643274','no'),(20752,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1691686475','no'),(20753,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/lionel/\'>WordPress 6.3 “Lionel”</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\'>Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-plugin-review-team-addresses-backlog-of-900-plugins-implements-strategies-to-improve-approval-process\'>WPTavern: WordPress Plugin Review Team Addresses Backlog of 900+ Plugins, Implements Strategies to Improve Approval Process</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/kadence-blocks-3-1-11-patches-critical-vulnerability\'>WPTavern: Kadence Blocks 3.1.11 Patches Critical Vulnerability</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/wordpress-6-3/\'>Post Status: WordPress 6.3 • Release Workflows • European Union Cyber Resiliency Act • Gutenberg Accessibility</a></li></ul></div>','no'),(20758,'elementor_controls_usage','a:3:{s:7:\"wp-page\";a:15:{s:7:\"heading\";a:2:{s:5:\"count\";i:30;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:30;s:5:\"align\";i:26;s:11:\"header_size\";i:1;s:4:\"size\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:22;s:16:\"_animation_delay\";i:22;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translate_popover\";i:6;s:35:\"_transform_translateY_effect_mobile\";i:6;s:23:\"_transform_scale_effect\";i:1;s:24:\"_transform_scale_popover\";i:1;s:30:\"_transform_scale_effect_tablet\";i:1;s:30:\"_transform_scale_effect_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:13;s:8:\"_z_index\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:25;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:24;s:5:\"width\";i:18;s:5:\"align\";i:24;s:4:\"look\";i:2;s:4:\"text\";i:8;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:4:{s:14:\"pattern_height\";i:23;s:3:\"gap\";i:17;s:5:\"color\";i:7;s:12:\"pattern_size\";i:6;}s:18:\"section_text_style\";a:11:{s:12:\"text_spacing\";i:8;s:10:\"text_color\";i:7;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:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;s:10:\"text_align\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:23;s:8:\"_z_index\";i:6;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:17;s:16:\"_animation_delay\";i:17;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translate_popover\";i:3;s:35:\"_transform_translateY_effect_mobile\";i:9;s:28:\"_transform_translateX_effect\";i:6;s:35:\"_transform_translateX_effect_tablet\";i:6;s:35:\"_transform_translateX_effect_mobile\";i:6;s:28:\"_transform_translateY_effect\";i:6;s:35:\"_transform_translateY_effect_tablet\";i:6;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:94;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:94;s:16:\"content_position\";i:29;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:23;s:6:\"margin\";i:29;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:7:{s:21:\"background_background\";i:21;s:16:\"background_image\";i:21;s:19:\"background_position\";i:21;s:17:\"background_repeat\";i:20;s:15:\"background_size\";i:21;s:16:\"background_color\";i:3;s:19:\"background_bg_width\";i:3;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:3;s:27:\"background_overlay_position\";i:3;s:25:\"background_overlay_repeat\";i:3;s:23:\"background_overlay_size\";i:3;s:27:\"background_overlay_bg_width\";i:3;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:18;s:26:\"box_shadow_box_shadow_type\";i:14;s:21:\"box_shadow_box_shadow\";i:14;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:39;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:39;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:37;s:19:\"image_border_radius\";i:6;s:32:\"image_box_shadow_box_shadow_type\";i:4;s:27:\"image_box_shadow_box_shadow\";i:4;s:7:\"opacity\";i:3;}}s:8:\"advanced\";a:6:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:24;s:8:\"_z_index\";i:7;s:21:\"_element_width_mobile\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:28;s:16:\"_animation_delay\";i:28;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translateX_effect\";i:17;s:28:\"_transform_translate_popover\";i:11;s:35:\"_transform_translateX_effect_tablet\";i:12;s:35:\"_transform_translateX_effect_mobile\";i:12;s:28:\"_transform_translateY_effect\";i:10;s:35:\"_transform_translateY_effect_tablet\";i:10;s:35:\"_transform_translateY_effect_mobile\";i:10;}s:19:\"_section_background\";a:5:{s:22:\"_background_background\";i:7;s:17:\"_background_image\";i:7;s:20:\"_background_position\";i:7;s:18:\"_background_repeat\";i:7;s:16:\"_background_size\";i:7;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:15;s:11:\"_mask_shape\";i:9;s:11:\"_mask_image\";i:9;}s:19:\"_section_responsive\";a:2:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:50;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:28;}s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:25;s:6:\"layout\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:16:\"background_color\";i:5;s:21:\"background_background\";i:4;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:2;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:13;s:24:\"background_overlay_image\";i:13;s:27:\"background_overlay_position\";i:9;s:25:\"background_overlay_repeat\";i:9;s:23:\"background_overlay_size\";i:13;s:27:\"background_overlay_bg_width\";i:10;s:26:\"background_overlay_opacity\";i:11;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:18;s:6:\"margin\";i:28;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:13;s:12:\"text_columns\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:7;s:16:\"_animation_delay\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:7;}}}}s:7:\"counter\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:19;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:19;s:10:\"title_text\";i:19;s:16:\"description_text\";i:19;}}s:5:\"style\";a:3:{s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:13;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:34:\"description_typography_font_family\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_font_weight\";i:3;s:37:\"description_typography_text_transform\";i:3;s:34:\"description_typography_line_height\";i:3;s:35:\"description_typography_word_spacing\";i:3;}s:17:\"section_style_box\";a:2:{s:8:\"position\";i:3;s:10:\"text_align\";i:10;}s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:6;s:15:\"hover_animation\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:12;s:7:\"_margin\";i:9;}s:19:\"_section_background\";a:8:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:6;s:28:\"_background_hover_background\";i:6;s:23:\"_background_hover_color\";i:6;s:17:\"_background_image\";i:6;s:20:\"_background_position\";i:6;s:16:\"_background_size\";i:6;s:18:\"_background_repeat\";i:6;}s:15:\"_section_border\";a:5:{s:14:\"_border_radius\";i:6;s:27:\"_box_shadow_box_shadow_type\";i:6;s:22:\"_box_shadow_box_shadow\";i:6;s:14:\"_border_border\";i:6;s:13:\"_border_width\";i:6;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:8;s:5:\"align\";i:8;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:17:\"button_text_color\";i:8;s:29:\"button_background_hover_color\";i:6;s:15:\"hover_animation\";i:8;s:13:\"border_radius\";i:8;s:16:\"background_color\";i:6;s:11:\"hover_color\";i:6;s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"text_padding\";i:5;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:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:8;s:16:\"_animation_delay\";i:8;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:4:{s:22:\"css_filters_css_filter\";i:1;s:22:\"css_filters_brightness\";i:1;s:20:\"css_filters_contrast\";i:1;s:20:\"css_filters_saturate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:4:\"view\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:11:\"star-rating\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_rating\";a:2:{s:10:\"star_style\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_stars_style\";a:2:{s:9:\"icon_size\";i:4;s:11:\"stars_color\";i:4;}}}}s:18:\"fluent-form-widget\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_fluent_form\";a:1:{s:9:\"form_list\";i:1;}}s:5:\"style\";a:1:{s:32:\"section_form_submit_button_style\";a:5:{s:34:\"form_submit_button_bg_color_normal\";i:1;s:32:\"form_submit_button_border_radius\";i:1;s:26:\"form_submit_button_padding\";i:1;s:33:\"form_submit_button_bg_color_hover\";i:1;s:35:\"form_submit_button_text_color_hover\";i:1;}}}}}s:4:\"page\";a:14:{s:6:\"spacer\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:44;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:44;s:5:\"align\";i:40;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:35;s:16:\"_animation_delay\";i:35;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:18;s:35:\"_transform_translateY_effect_mobile\";i:18;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:44;s:26:\"_background_video_fallback\";i:44;s:23:\"_background_hover_image\";i:44;s:32:\"_background_hover_video_fallback\";i:44;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:44;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:22;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:29;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:28;s:5:\"width\";i:28;s:5:\"align\";i:28;s:4:\"look\";i:2;s:4:\"text\";i:2;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:3:{s:14:\"pattern_height\";i:27;s:3:\"gap\";i:27;s:5:\"color\";i:1;}s:18:\"section_text_style\";a:10:{s:10:\"text_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:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;s:12:\"text_spacing\";i:2;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:27;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:27;s:16:\"_animation_delay\";i:27;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:9;s:35:\"_transform_translateY_effect_mobile\";i:9;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:29;s:26:\"_background_video_fallback\";i:29;s:23:\"_background_hover_image\";i:29;s:32:\"_background_hover_video_fallback\";i:29;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:29;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:142;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:142;s:16:\"content_position\";i:46;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:10:{s:16:\"background_image\";i:142;s:25:\"background_video_fallback\";i:142;s:22:\"background_hover_image\";i:142;s:31:\"background_hover_video_fallback\";i:142;s:21:\"background_background\";i:39;s:19:\"background_position\";i:39;s:17:\"background_repeat\";i:38;s:15:\"background_size\";i:39;s:16:\"background_color\";i:9;s:19:\"background_bg_width\";i:9;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:142;s:33:\"background_overlay_video_fallback\";i:142;s:30:\"background_overlay_hover_image\";i:142;s:39:\"background_overlay_hover_video_fallback\";i:142;s:29:\"background_overlay_background\";i:9;s:27:\"background_overlay_position\";i:9;s:25:\"background_overlay_repeat\";i:9;s:23:\"background_overlay_size\";i:9;s:27:\"background_overlay_bg_width\";i:9;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:30;s:26:\"box_shadow_box_shadow_type\";i:20;s:21:\"box_shadow_box_shadow\";i:20;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:47;s:6:\"margin\";i:46;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:76;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:10:{s:16:\"background_image\";i:76;s:25:\"background_video_fallback\";i:76;s:22:\"background_hover_image\";i:76;s:31:\"background_hover_video_fallback\";i:76;s:16:\"background_color\";i:10;s:21:\"background_background\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:26:\"section_background_overlay\";a:10:{s:24:\"background_overlay_image\";i:76;s:33:\"background_overlay_video_fallback\";i:76;s:30:\"background_overlay_hover_image\";i:76;s:39:\"background_overlay_hover_video_fallback\";i:76;s:29:\"background_overlay_background\";i:12;s:26:\"background_overlay_opacity\";i:11;s:25:\"background_overlay_repeat\";i:10;s:23:\"background_overlay_size\";i:12;s:27:\"background_overlay_bg_width\";i:10;s:27:\"background_overlay_position\";i:9;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:23;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:42;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:41;s:7:\"padding\";i:18;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:6;s:11:\"hide_mobile\";i:6;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:4:{s:22:\"css_filters_css_filter\";i:1;s:22:\"css_filters_brightness\";i:1;s:20:\"css_filters_contrast\";i:1;s:20:\"css_filters_saturate\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:50;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:50;s:5:\"align\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:49;s:19:\"image_border_radius\";i:9;s:32:\"image_box_shadow_box_shadow_type\";i:8;s:27:\"image_box_shadow_box_shadow\";i:8;s:7:\"opacity\";i:6;}}s:8:\"advanced\";a:5:{s:19:\"_section_background\";a:8:{s:17:\"_background_image\";i:50;s:26:\"_background_video_fallback\";i:50;s:23:\"_background_hover_image\";i:50;s:32:\"_background_hover_video_fallback\";i:50;s:22:\"_background_background\";i:4;s:20:\"_background_position\";i:4;s:18:\"_background_repeat\";i:4;s:16:\"_background_size\";i:4;}s:16:\"_section_masking\";a:3:{s:11:\"_mask_image\";i:50;s:12:\"_mask_switch\";i:17;s:11:\"_mask_shape\";i:5;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:28;s:8:\"_z_index\";i:5;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:23;s:16:\"_animation_delay\";i:23;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translate_popover\";i:10;s:28:\"_transform_translateX_effect\";i:15;s:35:\"_transform_translateX_effect_tablet\";i:11;s:35:\"_transform_translateX_effect_mobile\";i:11;s:28:\"_transform_translateY_effect\";i:10;s:35:\"_transform_translateY_effect_tablet\";i:10;s:35:\"_transform_translateY_effect_mobile\";i:10;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:4:\"view\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:15;s:12:\"text_columns\";i:1;}}s:8:\"advanced\";a:4:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:15;s:26:\"_background_video_fallback\";i:15;s:23:\"_background_hover_image\";i:15;s:32:\"_background_hover_video_fallback\";i:15;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:15;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:11;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:10;s:16:\"_animation_delay\";i:10;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:10;}}}}s:11:\"star-rating\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_rating\";a:2:{s:10:\"star_style\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_stars_style\";a:2:{s:9:\"icon_size\";i:4;s:11:\"stars_color\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:29;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:29;s:10:\"title_text\";i:29;s:16:\"description_text\";i:29;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:29;s:17:\"description_color\";i:9;s:33:\"description_typography_typography\";i:9;s:34:\"description_typography_font_family\";i:9;s:32:\"description_typography_font_size\";i:9;s:34:\"description_typography_font_weight\";i:9;s:37:\"description_typography_text_transform\";i:9;s:34:\"description_typography_line_height\";i:9;s:35:\"description_typography_word_spacing\";i:9;}s:17:\"section_style_box\";a:2:{s:8:\"position\";i:9;s:10:\"text_align\";i:8;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:12;s:7:\"_margin\";i:9;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:29;s:26:\"_background_video_fallback\";i:29;s:23:\"_background_hover_image\";i:29;s:32:\"_background_hover_video_fallback\";i:29;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:29;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:15;s:5:\"align\";i:15;s:12:\"align_tablet\";i:2;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:15;s:29:\"button_background_hover_color\";i:11;s:15:\"hover_animation\";i:15;s:13:\"border_radius\";i:15;s:16:\"background_color\";i:11;s:11:\"hover_color\";i:11;s:13:\"border_border\";i:11;s:12:\"border_width\";i:11;s:12:\"text_padding\";i:11;s:25:\"background_video_fallback\";i:15;s:38:\"button_background_hover_video_fallback\";i:15;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:15;s:16:\"_animation_delay\";i:15;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:14;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:15;s:26:\"_background_video_fallback\";i:15;s:23:\"_background_hover_image\";i:15;s:32:\"_background_hover_video_fallback\";i:15;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:15;}}}}s:7:\"counter\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}s:7:\"section\";a:14:{s:7:\"heading\";a:2:{s:5:\"count\";i:29;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:29;s:5:\"align\";i:19;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:13;s:16:\"_animation_delay\";i:13;s:18:\"animation_duration\";i:2;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;s:24:\"_transform_scale_popover\";i:2;s:23:\"_transform_scale_effect\";i:2;s:30:\"_transform_scale_effect_tablet\";i:1;s:30:\"_transform_scale_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:29;s:26:\"_background_video_fallback\";i:29;s:23:\"_background_hover_image\";i:29;s:32:\"_background_hover_video_fallback\";i:29;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:29;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:14;s:8:\"_z_index\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"style\";i:16;s:5:\"width\";i:9;s:5:\"align\";i:15;s:4:\"text\";i:6;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:4:{s:14:\"pattern_height\";i:15;s:3:\"gap\";i:9;s:5:\"color\";i:6;s:12:\"pattern_size\";i:6;}s:18:\"section_text_style\";a:3:{s:10:\"text_color\";i:6;s:10:\"text_align\";i:6;s:12:\"text_spacing\";i:6;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:15;s:8:\"_z_index\";i:6;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:9;s:16:\"_animation_delay\";i:9;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:7;s:28:\"_transform_translateX_effect\";i:6;s:35:\"_transform_translateX_effect_tablet\";i:6;s:35:\"_transform_translateX_effect_mobile\";i:6;s:28:\"_transform_translateY_effect\";i:6;s:35:\"_transform_translateY_effect_tablet\";i:6;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:16;s:26:\"_background_video_fallback\";i:16;s:23:\"_background_hover_image\";i:16;s:32:\"_background_hover_video_fallback\";i:16;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:16;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:112;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:112;s:16:\"content_position\";i:38;s:21:\"space_between_widgets\";i:3;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:9:{s:16:\"background_image\";i:112;s:25:\"background_video_fallback\";i:112;s:22:\"background_hover_image\";i:112;s:31:\"background_hover_video_fallback\";i:112;s:21:\"background_background\";i:19;s:19:\"background_position\";i:6;s:17:\"background_repeat\";i:5;s:15:\"background_size\";i:6;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:112;s:33:\"background_overlay_video_fallback\";i:112;s:30:\"background_overlay_hover_image\";i:112;s:39:\"background_overlay_hover_video_fallback\";i:112;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:17;s:26:\"box_shadow_box_shadow_type\";i:16;s:21:\"box_shadow_box_shadow\";i:16;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:19;s:6:\"margin\";i:46;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:34;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:34;s:5:\"align\";i:5;s:10:\"image_size\";i:12;s:22:\"image_custom_dimension\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:32;s:19:\"image_border_radius\";i:5;s:32:\"image_box_shadow_box_shadow_type\";i:4;s:27:\"image_box_shadow_box_shadow\";i:4;s:7:\"opacity\";i:3;}}s:8:\"advanced\";a:6:{s:19:\"_section_background\";a:9:{s:17:\"_background_image\";i:34;s:26:\"_background_video_fallback\";i:34;s:23:\"_background_hover_image\";i:34;s:32:\"_background_hover_video_fallback\";i:34;s:22:\"_background_background\";i:3;s:20:\"_background_position\";i:3;s:18:\"_background_repeat\";i:3;s:16:\"_background_size\";i:3;s:17:\"_background_color\";i:1;}s:16:\"_section_masking\";a:4:{s:11:\"_mask_image\";i:34;s:12:\"_mask_switch\";i:16;s:11:\"_mask_shape\";i:18;s:16:\"_mask_size_scale\";i:2;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translate_popover\";i:7;s:28:\"_transform_translateX_effect\";i:8;s:35:\"_transform_translateX_effect_tablet\";i:7;s:35:\"_transform_translateX_effect_mobile\";i:7;s:28:\"_transform_translateY_effect\";i:6;s:35:\"_transform_translateY_effect_tablet\";i:6;s:35:\"_transform_translateY_effect_mobile\";i:6;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:14;s:16:\"_animation_delay\";i:13;s:18:\"animation_duration\";i:1;}s:14:\"_section_style\";a:4:{s:21:\"_element_width_mobile\";i:2;s:7:\"_margin\";i:8;s:8:\"_z_index\";i:2;s:8:\"_padding\";i:14;}s:19:\"_section_responsive\";a:2:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:59;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:38;}s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:20;s:6:\"height\";i:1;s:3:\"gap\";i:16;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:12:{s:16:\"background_image\";i:59;s:25:\"background_video_fallback\";i:59;s:22:\"background_hover_image\";i:59;s:31:\"background_hover_video_fallback\";i:59;s:16:\"background_color\";i:4;s:21:\"background_background\";i:17;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:2;s:19:\"background_bg_width\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:26:\"section_background_overlay\";a:10:{s:24:\"background_overlay_image\";i:59;s:33:\"background_overlay_video_fallback\";i:59;s:30:\"background_overlay_hover_image\";i:59;s:39:\"background_overlay_hover_video_fallback\";i:59;s:29:\"background_overlay_background\";i:10;s:27:\"background_overlay_position\";i:8;s:25:\"background_overlay_repeat\";i:7;s:23:\"background_overlay_size\";i:10;s:26:\"background_overlay_opacity\";i:9;s:27:\"background_overlay_bg_width\";i:7;}s:14:\"section_border\";a:5:{s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:5;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:32;s:7:\"padding\";i:30;s:7:\"z_index\";i:2;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_tablet\";i:4;s:11:\"hide_mobile\";i:4;s:12:\"hide_desktop\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:16;s:12:\"text_columns\";i:2;}}s:8:\"advanced\";a:4:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:16;s:26:\"_background_video_fallback\";i:16;s:23:\"_background_hover_image\";i:16;s:32:\"_background_hover_video_fallback\";i:16;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:16;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:10;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:7;s:16:\"_animation_delay\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:8;}}}}s:13:\"image-gallery\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:3:{s:10:\"wp_gallery\";i:1;s:14:\"thumbnail_size\";i:1;s:15:\"gallery_columns\";i:1;}}s:5:\"style\";a:1:{s:22:\"section_gallery_images\";a:3:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:5:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:4:\"view\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:2:{s:8:\"position\";i:3;s:26:\"content_vertical_alignment\";i:3;}s:18:\"section_style_icon\";a:4:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;s:15:\"secondary_color\";i:3;}s:21:\"section_style_content\";a:3:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:17:\"description_color\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:2;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:12:\"icon_spacing\";i:2;s:13:\"border_radius\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:9;s:5:\"align\";i:9;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:9;s:29:\"button_background_hover_color\";i:5;s:15:\"hover_animation\";i:9;s:13:\"border_radius\";i:9;s:16:\"background_color\";i:5;s:11:\"hover_color\";i:5;s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"text_padding\";i:6;s:25:\"background_video_fallback\";i:9;s:38:\"button_background_hover_video_fallback\";i:9;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:9;s:16:\"_animation_delay\";i:9;s:18:\"animation_duration\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:9;s:26:\"_background_video_fallback\";i:9;s:23:\"_background_hover_image\";i:9;s:32:\"_background_hover_video_fallback\";i:9;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:9;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:22;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:22;s:10:\"title_text\";i:22;s:16:\"description_text\";i:22;}}s:5:\"style\";a:3:{s:19:\"section_style_image\";a:3:{s:10:\"image_size\";i:6;s:15:\"hover_animation\";i:6;s:11:\"image_space\";i:12;}s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:10;}s:21:\"section_style_content\";a:1:{s:18:\"title_bottom_space\";i:16;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:18;s:8:\"_padding\";i:6;}s:19:\"_section_background\";a:11:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:6;s:28:\"_background_hover_background\";i:6;s:23:\"_background_hover_color\";i:6;s:17:\"_background_image\";i:22;s:20:\"_background_position\";i:6;s:16:\"_background_size\";i:6;s:18:\"_background_repeat\";i:6;s:26:\"_background_video_fallback\";i:22;s:23:\"_background_hover_image\";i:22;s:32:\"_background_hover_video_fallback\";i:22;}s:15:\"_section_border\";a:5:{s:14:\"_border_radius\";i:6;s:27:\"_box_shadow_box_shadow_type\";i:6;s:22:\"_box_shadow_box_shadow\";i:6;s:14:\"_border_border\";i:6;s:13:\"_border_width\";i:6;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:22;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:4:\"view\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:11:\"star-rating\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_rating\";a:2:{s:10:\"star_style\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_stars_style\";a:2:{s:9:\"icon_size\";i:4;s:11:\"stars_color\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}}','no'),(20760,'_site_transient_ai1wm_last_check_for_updates','1691643297','no'),(20763,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1717101986;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"2.8.1\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:1:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.0.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.0.2.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.3\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(20795,'elementor_1_elementor_updater_batch_77b669dda14710968bb16946a81c','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),(20798,'_elementor_global_css','a:6:{s:4:\"time\";i:1694235713;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(20799,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:12:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 08-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.5\";}s:15:\"navigation-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.5\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.5\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 08-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.5\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 08-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.5\";}s:7:\"divider\";a:2:{s:7:\"content\";s:4311:\"<style>/*! elementor - v3.21.0 - 08-05-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.5\";}s:9:\"image-box\";a:2:{s:7:\"content\";s:1424:\"<style>/*! elementor - v3.21.0 - 08-05-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style>\";s:7:\"version\";s:6:\"3.21.5\";}s:4:\"icon\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.5\";}s:11:\"star-rating\";a:2:{s:7:\"content\";s:2718:\"<style>/*! elementor - v3.21.0 - 08-05-2024 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"\\e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-inline-end:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-inline-end:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-inline-end:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-inline-end:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\";s:7:\"version\";s:6:\"3.21.5\";}s:18:\"fluent-form-widget\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.5\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.21.0 - 08-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.5\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:137:\"<link rel=\"stylesheet\" href=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.21.5\";}}}}','yes'),(20913,'_transient_timeout_elementor_remote_info_api_data_3.18.2','1702148778','no'),(20914,'_transient_elementor_remote_info_api_data_3.18.2','a:4:{s:9:\"timestamp\";s:10:\"1702102106\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(20929,'_transient_timeout_elementor_remote_info_api_data_3.18.3','1704828840','no'),(20930,'_transient_elementor_remote_info_api_data_3.18.3','a:4:{s:9:\"timestamp\";s:10:\"1704784205\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(20969,'_transient_timeout_elementor_remote_info_api_data_3.19.2','1707424378','no'),(20970,'_transient_elementor_remote_info_api_data_3.19.2','a:4:{s:9:\"timestamp\";s:10:\"1707378152\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(21005,'_transient_timeout_elementor_remote_info_api_data_3.19.4','1710193237','no'),(21006,'_transient_elementor_remote_info_api_data_3.19.4','a:4:{s:9:\"timestamp\";s:10:\"1710148366\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(21042,'_transient_timeout_elementor_remote_info_api_data_3.20.3','1712799676','no'),(21043,'_transient_elementor_remote_info_api_data_3.20.3','a:4:{s:9:\"timestamp\";s:10:\"1712754135\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(21078,'_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.5.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.3\";s:7:\"version\";s:5:\"6.5.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1717188465;s:15:\"version_checked\";s:5:\"6.5.3\";s:12:\"translations\";a:0:{}}','no'),(21085,'_transient_timeout_as-post-store-dependencies-met','1715434947','no'),(21086,'_transient_as-post-store-dependencies-met','yes','no'),(21087,'_transient_timeout_elementor_remote_info_api_data_3.21.5','1715391749','no'),(21088,'_transient_elementor_remote_info_api_data_3.21.5','a:4:{s:9:\"timestamp\";s:10:\"1715345731\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(21113,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1717188467;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.82\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.82.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2990457\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2990457\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:21:\"speedien/speedien.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:22:\"w.org/plugins/speedien\";s:4:\"slug\";s:8:\"speedien\";s:6:\"plugin\";s:21:\"speedien/speedien.php\";s:11:\"new_version\";s:5:\"1.1.8\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/speedien/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/speedien.1.1.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/speedien/assets/icon-256x256.png?rev=2503654\";s:2:\"1x\";s:61:\"https://ps.w.org/speedien/assets/icon-128x128.png?rev=2503654\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/speedien/assets/banner-1544x500.png?rev=2547636\";s:2:\"1x\";s:63:\"https://ps.w.org/speedien/assets/banner-772x250.png?rev=2547636\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.21.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:6:\"1.6.35\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.35.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2813167\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2813167\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/elementskit-lite\";s:4:\"slug\";s:16:\"elementskit-lite\";s:6:\"plugin\";s:37:\"elementskit-lite/elementskit-lite.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/elementskit-lite.3.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175\";s:2:\"1x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/elementskit-lite/assets/banner-1544x500.png?rev=2118488\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.png?rev=2118488\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:25:\"fluentform/fluentform.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/fluentform\";s:4:\"slug\";s:10:\"fluentform\";s:6:\"plugin\";s:25:\"fluentform/fluentform.php\";s:11:\"new_version\";s:6:\"5.1.18\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/fluentform/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/fluentform.5.1.18.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/fluentform/assets/icon-256x256.png?rev=1794277\";s:2:\"1x\";s:63:\"https://ps.w.org/fluentform/assets/icon-128x128.png?rev=1794277\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/fluentform/assets/banner-1544x500.png?rev=2957809\";s:2:\"1x\";s:65:\"https://ps.w.org/fluentform/assets/banner-772x250.png?rev=2957809\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}s:35:\"fluentforms-pdf/fluentforms-pdf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/fluentforms-pdf\";s:4:\"slug\";s:15:\"fluentforms-pdf\";s:6:\"plugin\";s:35:\"fluentforms-pdf/fluentforms-pdf.php\";s:11:\"new_version\";s:5:\"1.1.8\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/fluentforms-pdf/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/fluentforms-pdf.1.1.8.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:60:\"https://ps.w.org/fluentforms-pdf/assets/icon.svg?rev=2294425\";s:3:\"svg\";s:60:\"https://ps.w.org/fluentforms-pdf/assets/icon.svg?rev=2294425\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/fluentforms-pdf/assets/banner-1544x500.png?rev=2294425\";s:2:\"1x\";s:70:\"https://ps.w.org/fluentforms-pdf/assets/banner-772x250.png?rev=2294425\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:7:\"1.127.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/google-site-kit.1.127.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=2181376\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=2181376\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=2513620\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=2513620\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:25:\"templately/templately.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/templately\";s:4:\"slug\";s:10:\"templately\";s:6:\"plugin\";s:25:\"templately/templately.php\";s:11:\"new_version\";s:5:\"3.0.8\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/templately/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/templately.3.0.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/templately/assets/icon-256x256.gif?rev=2793347\";s:2:\"1x\";s:63:\"https://ps.w.org/templately/assets/icon-128x128.gif?rev=2793347\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/templately/assets/banner-1544x500.jpg?rev=3045586\";s:2:\"1x\";s:65:\"https://ps.w.org/templately/assets/banner-772x250.png?rev=3045586\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:12:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.82\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.52\";s:21:\"speedien/speedien.php\";s:5:\"1.1.8\";s:23:\"elementor/elementor.php\";s:6:\"3.21.8\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"1.6.35\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"3.1.4\";s:25:\"fluentform/fluentform.php\";s:6:\"5.1.18\";s:35:\"fluentforms-pdf/fluentforms-pdf.php\";s:5:\"1.1.8\";s:9:\"hello.php\";s:5:\"1.7.2\";s:35:\"google-site-kit/google-site-kit.php\";s:7:\"1.127.0\";s:25:\"templately/templately.php\";s:5:\"3.0.8\";}}','no'),(21114,'_site_transient_timeout_theme_roots','1717103785','no'),(21115,'_site_transient_theme_roots','a:4:{s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no');
/*!40000 ALTER TABLE `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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2363 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_elementor_edit_mode','builder'),(4,5,'_elementor_template_type','kit'),(7,7,'_elementor_edit_mode','builder'),(8,7,'_elementor_template_type','kit'),(9,7,'_elementor_version','3.7.6'),(10,8,'_elementor_edit_mode','builder'),(11,8,'_elementor_template_type','kit'),(12,8,'_elementor_version','3.7.6'),(13,7,'_wp_page_template','default'),(14,7,'_elementor_page_settings','a:107:{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:\"#181B31\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#080915\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#646778\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#F7F9FB\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"123181f\";s:5:\"title\";s:17:\"Color-Transparent\";s:5:\"color\";s:9:\"#02010100\";}i:1;a:3:{s:3:\"_id\";s:7:\"349f2af\";s:5:\"title\";s:11:\"Color-White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:7:\"eeac0c6\";s:5:\"title\";s:12:\"Color-Border\";s:5:\"color\";s:7:\"#DDDDDD\";}i:3;a:3:{s:3:\"_id\";s:7:\"7679034\";s:5:\"title\";s:7:\"#904EFB\";s:5:\"color\";s:7:\"#904EFB\";}i:4;a:3:{s:3:\"_id\";s:7:\"63068bb\";s:5:\"title\";s:7:\"#FFF1CE\";s:5:\"color\";s:7:\"#FFF1CE\";}}s:17:\"system_typography\";a:4:{i:0;a:9:{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:11:\"EB Garamond\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:1;a:12:{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:11:\"EB Garamond\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:2;a:8:{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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}}i:3;a:9:{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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:13:{i:0;a:8:{s:3:\"_id\";s:7:\"6f3f7d4\";s:5:\"title\";s:2:\"H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"17f256f\";s:5:\"title\";s:14:\"Font-Poppin-11\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:11;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:25:\"typography_text_transform\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"e43b7c6\";s:5:\"title\";s:2:\"H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"EB Garamond\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:85;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:55;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"32a7cf2\";s:5:\"title\";s:2:\"H1\";}i:4;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"EB Garamond\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:43;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"100\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:3.2999999999999998;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d15501b\";s:5:\"title\";s:2:\"H2\";}i:5;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"EB Garamond\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"c64725e\";s:5:\"title\";s:9:\"Button 01\";}i:6;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:11;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:11;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:11;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"41b9d89\";s:5:\"title\";s:11:\"Title 11 px\";}i:7;a:12:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"EB Garamond\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:33;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d5d9df9\";s:5:\"title\";s:2:\"H3\";}i:8;a:12:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"EB Garamond\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"569b2c4\";s:5:\"title\";s:2:\"H4\";}i:9;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"EB Garamond\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"cd4e809\";s:5:\"title\";s:9:\"Button 02\";}i:10;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"200\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.5;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"d593777\";s:5:\"title\";s:11:\"Description\";}i:11;a:12:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:3.2999999999999998;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"f127f7f\";s:5:\"title\";s:14:\"Font-Poppin-35\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:27;s:5:\"sizes\";a:0:{}}}i:12;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"faa57bc\";s:5:\"title\";s:6:\"header\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:25:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"link_normal_color\";s:0:\"\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:8:\"h1_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=32a7cf2\";s:8:\"h2_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h3_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h3_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=569b2c4\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=e43b7c6\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:31:\"globals/typography?id=secondary\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=c64725e\";s:23:\"button_background_color\";s:25:\"globals/colors?id=primary\";s:17:\"button_text_color\";s:24:\"globals/colors?id=accent\";s:29:\"button_hover_background_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_hover_text_color\";s:24:\"globals/colors?id=accent\";s:32:\"form_label_typography_typography\";s:26:\"globals/typography?id=text\";s:16:\"form_label_color\";s:27:\"globals/colors?id=secondary\";s:32:\"form_field_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"form_field_text_color\";s:25:\"globals/colors?id=primary\";}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:19:\"image_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:10:\"body_color\";s:7:\"#646778\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Poppins\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:30:\"body_typography_text_transform\";s:4:\"none\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#080915\";s:16:\"link_hover_color\";s:7:\"#181B31\";s:8:\"h1_color\";s:7:\"#080915\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"EB Garamond\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:85;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"300\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:26:\"h1_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#080915\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:11:\"EB Garamond\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"400\";s:28:\"h2_typography_text_transform\";s:4:\"none\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:28:\"h2_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:8:\"h3_color\";s:7:\"#080915\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Poppins\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:28:\"h3_typography_text_transform\";s:4:\"none\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:8:\"h4_color\";s:7:\"#080915\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:11:\"EB Garamond\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"500\";s:28:\"h4_typography_text_transform\";s:9:\"uppercase\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:28:\"h4_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:26:\"h4_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#181B31\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Poppins\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"600\";s:28:\"h5_typography_text_transform\";s:4:\"none\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:26:\"h5_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#181B31\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:11:\"EB Garamond\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"400\";s:28:\"h6_typography_text_transform\";s:9:\"uppercase\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:11:\"EB Garamond\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"400\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:30:\"button_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#F7F9FB\";s:23:\"button_background_color\";s:7:\"#181B31\";s:23:\"button_hover_text_color\";s:7:\"#F7F9FB\";s:29:\"button_hover_background_color\";s:7:\"#080915\";s:16:\"form_label_color\";s:7:\"#080915\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:7:\"Poppins\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"300\";s:36:\"form_label_typography_text_transform\";s:4:\"none\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:7:\"Poppins\";s:31:\"form_field_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:33:\"form_field_typography_font_weight\";s:3:\"300\";s:36:\"form_field_typography_text_transform\";s:4:\"none\";s:33:\"form_field_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:21:\"form_field_text_color\";s:7:\"#181B31\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:55;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:32:\"h6_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:32:\"h6_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:9:\"site_name\";s:12:\"We Influence\";s:16:\"site_description\";s:23:\"Influence Your Business\";}'),(15,9,'_elementor_edit_mode','builder'),(16,9,'_elementor_template_type','section'),(17,9,'_elementor_version','3.7.6'),(18,10,'_wp_attached_file','2022/09/logo.png'),(19,10,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:541;s:6:\"height\";i:90;s:4:\"file\";s:16:\"2022/09/logo.png\";s:8:\"filesize\";i:5055;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"logo-300x50.png\";s:5:\"width\";i:300;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2498;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"logo-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:808;}}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:{}}}'),(20,10,'_elementor_source_image_hash','a5d820e7965078c8cf8dbbdda5ae035c5b413388'),(21,9,'_elementor_data','[{\"id\":\"c3abdc2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a32f675\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67133604\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b4b5796\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.331999999999994,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false},{\"id\":\"3206095c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74f70725\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(22,11,'_elementor_edit_mode','builder'),(23,11,'_elementor_template_type','section'),(24,11,'_elementor_version','3.7.6'),(25,11,'_elementor_data','[]'),(26,9,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(27,9,'template_type','section-header'),(28,9,'include_in_zip','1'),(29,9,'elementor_pro_required',NULL),(30,9,'wp_page_template','elementor_canvas'),(31,12,'_elementor_edit_mode','builder'),(32,12,'_elementor_template_type','section'),(33,12,'_elementor_version','3.7.6'),(34,13,'_wp_attached_file','2022/09/Group-7.png'),(35,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:555;s:4:\"file\";s:19:\"2022/09/Group-7.png\";s:8:\"filesize\";i:227969;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Group-7-300x87.png\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20181;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"Group-7-1024x296.png\";s:5:\"width\";i:1024;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182110;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Group-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Group-7-768x222.png\";s:5:\"width\";i:768;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106011;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"Group-7-1536x444.png\";s:5:\"width\";i:1536;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:390717;}}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:{}}}'),(36,13,'_elementor_source_image_hash','275b8fe432eb05b24c4a628399b566d76169497a'),(37,14,'_wp_attached_file','2022/09/icon08.png'),(38,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:764;s:4:\"file\";s:18:\"2022/09/icon08.png\";s:8:\"filesize\";i:33674;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"icon08-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:939;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"icon08-1024x407.png\";s:5:\"width\";i:1024;s:6:\"height\";i:407;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3839;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"icon08-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:18:\"icon08-768x306.png\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2712;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"icon08-1536x611.png\";s:5:\"width\";i:1536;s:6:\"height\";i:611;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6254;}}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,14,'_elementor_source_image_hash','21370dece16a1b7c1554d62026d97b0a65a50bbb'),(40,15,'_wp_attached_file','2022/09/jp09.jpg'),(41,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:1518;s:4:\"file\";s:16:\"2022/09/jp09.jpg\";s:8:\"filesize\";i:52498;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"jp09-257x300.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9976;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"jp09-877x1024.jpg\";s:5:\"width\";i:877;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47235;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"jp09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6077;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"jp09-768x897.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:897;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39104;}}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:{}}}'),(42,15,'_elementor_source_image_hash','0761273d58d56a49b7f3c2cbb8ac89a05c6a0b03'),(43,12,'_elementor_data','[{\"id\":\"198b6884\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58d23d7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"439e835\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63665b24\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bcc4cd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ea76c88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31490ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"799b7cc6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2e0db5f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2df6d3cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71eee99\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"119f70b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61d30137\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"50\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58bdcafb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"403d2f25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a37501e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"157faa65\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"2571ab5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d9881ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c07b88b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4c254124\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fda977b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d671131\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1e84afbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d9fe425\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7beb4957\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68c0c312\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b223fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505ee739\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70146ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36e129ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(44,16,'_elementor_edit_mode','builder'),(45,16,'_elementor_template_type','section'),(46,16,'_elementor_version','3.7.6'),(47,16,'_elementor_data','[]'),(48,12,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(49,12,'template_type','section-footer'),(50,12,'include_in_zip','1'),(51,12,'elementor_pro_required',NULL),(52,12,'wp_page_template','elementor_canvas'),(53,17,'_elementor_edit_mode','builder'),(54,17,'_elementor_template_type','section'),(55,17,'_elementor_version','3.7.6'),(56,18,'_wp_attached_file','2022/09/influencer-1.jpg'),(57,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2022/09/influencer-1.jpg\";s:8:\"filesize\";i:75247;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"influencer-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14080;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"influencer-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102906;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"influencer-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5132;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"influencer-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61850;}}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:{}}}'),(58,18,'_elementor_source_image_hash','dade1e02592a00407bb2febe77e9bbc22f51c15b'),(59,19,'_wp_attached_file','2022/09/icon07.png'),(60,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:18:\"2022/09/icon07.png\";s:8:\"filesize\";i:29059;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"icon07-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1694;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"icon07-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7181;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"icon07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:768;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"icon07-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4993;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(61,19,'_elementor_source_image_hash','5c2d9e84d02eed0c3c1ceb85ee01c82973ef6359'),(62,20,'_wp_attached_file','2022/09/influencer-4.jpg'),(63,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2022/09/influencer-4.jpg\";s:8:\"filesize\";i:65649;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"influencer-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12697;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"influencer-4-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92862;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"influencer-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4343;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"influencer-4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58757;}}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:{}}}'),(64,20,'_elementor_source_image_hash','dd5dd3cc2f8bad3237672d134ea6a3022387da7a'),(65,21,'_wp_attached_file','2022/09/influencer-5.jpg'),(66,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2022/09/influencer-5.jpg\";s:8:\"filesize\";i:39916;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"influencer-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8678;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"influencer-5-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62441;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"influencer-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3242;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"influencer-5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40075;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67,21,'_elementor_source_image_hash','584a169c1200042455ff584ba6be7dd775519c0c'),(68,22,'_wp_attached_file','2022/09/influencer-7.jpg'),(69,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2022/09/influencer-7.jpg\";s:8:\"filesize\";i:50058;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"influencer-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11515;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"influencer-7-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72605;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"influencer-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4272;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"influencer-7-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47382;}}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:{}}}'),(70,22,'_elementor_source_image_hash','19bd5a9d0d5c14a57e244cbcf6bf0de136180613'),(71,17,'_elementor_data','[{\"id\":\"6a2469ae\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"387ea4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68df035e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-1.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f014547\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"681fce38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"572a9e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"39d57daf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Snoop Dogg\",\"description_text\":\"Food Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3f3a0bed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56bbad32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"407b0ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e3f5609\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"7b67359f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fb2cd5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Julia Roberts\",\"description_text\":\"Food Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"71c9f648\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"516af77a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":21,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-5.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d297b47\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fc472e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"5f064431\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"26ffebcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Will Smith\",\"description_text\":\"Food Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"58f7b91a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39da4d27\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ce23129\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f4cac01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"5cb376a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a5fc3a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Julie Estelle\",\"description_text\":\"Food Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(72,23,'_elementor_edit_mode','builder'),(73,23,'_elementor_template_type','section'),(74,23,'_elementor_version','3.7.6'),(75,23,'_elementor_data','[]'),(76,17,'_elementor_page_assets','a:0:{}'),(77,17,'template_type','section-product'),(78,17,'include_in_zip','1'),(79,17,'elementor_pro_required',NULL),(80,17,'wp_page_template','elementor_canvas'),(81,24,'_elementor_edit_mode','builder'),(82,24,'_elementor_template_type','section'),(83,24,'_elementor_version','3.7.6'),(84,25,'_wp_attached_file','2022/09/influencer-2.jpg'),(85,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2022/09/influencer-2.jpg\";s:8:\"filesize\";i:54409;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"influencer-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11629;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"influencer-2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77925;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"influencer-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4292;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"influencer-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49597;}}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:{}}}'),(86,25,'_elementor_source_image_hash','e3989a45e838709009bf1b5065f13572e37d3fba'),(87,26,'_wp_attached_file','2022/09/influencer-12.jpg'),(88,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2022/09/influencer-12.jpg\";s:8:\"filesize\";i:83123;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"influencer-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15091;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"influencer-12-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110841;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"influencer-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5352;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"influencer-12-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68304;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(89,26,'_elementor_source_image_hash','f12356aa5e9278f65263f9ecd33bc48978a34ce0'),(90,27,'_wp_attached_file','2022/09/influencer-3.jpg'),(91,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2022/09/influencer-3.jpg\";s:8:\"filesize\";i:88551;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"influencer-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13234;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"influencer-3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"influencer-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4661;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"influencer-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70528;}}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:{}}}'),(92,27,'_elementor_source_image_hash','fcb441712b5eec87a5c90df14c0665dee93af3f8'),(93,28,'_wp_attached_file','2022/09/influencer-10.jpg'),(94,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2022/09/influencer-10.jpg\";s:8:\"filesize\";i:54278;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"influencer-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12045;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"influencer-10-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76604;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"influencer-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4351;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"influencer-10-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50104;}}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:{}}}'),(95,28,'_elementor_source_image_hash','027570621e16d6e25457948abee4efa88f5d5122'),(96,24,'_elementor_data','[{\"id\":\"faaf0b6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"765be07\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c16393c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":25,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-2.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71d0bba8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5aa91a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"4a01f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ae7f17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Daniel Radcliffe\",\"description_text\":\"Gaming Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"125ed36c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47e1800a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-12.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"630d5176\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"190784f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"2bc964a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"eee9e35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Ryan Gosling\",\"description_text\":\"Gaming Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"17bd37fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"512758cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":27,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-3.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"43469360\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19834751\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"6f1c5ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c24a454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Will Smith\",\"description_text\":\"Gaming Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34c54ef4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20974f25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-10.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26aa1fd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"169bbdbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3b714935\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"17cb825b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Julie Estelle\",\"description_text\":\"Gaming Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(97,29,'_elementor_edit_mode','builder'),(98,29,'_elementor_template_type','section'),(99,29,'_elementor_version','3.7.6'),(100,29,'_elementor_data','[]'),(101,24,'_elementor_page_assets','a:0:{}'),(102,24,'template_type','section-product'),(103,24,'include_in_zip','1'),(104,24,'elementor_pro_required',NULL),(105,24,'wp_page_template','elementor_canvas'),(106,30,'_elementor_edit_mode','builder'),(107,30,'_elementor_template_type','section'),(108,30,'_elementor_version','3.7.6'),(109,31,'_wp_attached_file','2022/09/influencer-6.jpg'),(110,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2022/09/influencer-6.jpg\";s:8:\"filesize\";i:37522;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"influencer-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9081;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"influencer-6-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55335;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"influencer-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3337;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"influencer-6-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36155;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(111,31,'_elementor_source_image_hash','da8d785f61f655e74453b7123dbc2ed2d603cee7'),(112,32,'_wp_attached_file','2022/09/influencer-11.jpg'),(113,32,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2022/09/influencer-11.jpg\";s:8:\"filesize\";i:52400;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"influencer-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12363;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"influencer-11-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"influencer-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"influencer-11-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49543;}}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:{}}}'),(114,32,'_elementor_source_image_hash','1180e97200308be68641473a2241102d8ff7bf3f'),(115,33,'_wp_attached_file','2022/09/influencer-9.jpg'),(116,33,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2022/09/influencer-9.jpg\";s:8:\"filesize\";i:76699;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"influencer-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15468;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"influencer-9-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106166;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"influencer-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5049;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"influencer-9-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67685;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(117,33,'_elementor_source_image_hash','039f75f3894fa3f0a723974a00163090f7081570'),(118,30,'_elementor_data','[{\"id\":\"12637087\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3567e06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ff83c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36f3b5c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61db3692\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"53ec2855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e58c1b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Snoop Dogg\",\"description_text\":\"Finance Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15445b89\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"528afe53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-10.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77b24589\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65e41f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"50565368\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b98b1e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"rena Roberts\",\"description_text\":\"Finance Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2d40fd31\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"235e509\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-11.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"585da720\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"146d7b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"1b35eeee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"41089522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Julie Estelle\",\"description_text\":\"Finance Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1fdb23f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54ccd907\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-9.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f4feaa2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27b84d91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"f347ea2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"662bcf63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Steven Seagal\",\"description_text\":\"Finance Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(119,34,'_elementor_edit_mode','builder'),(120,34,'_elementor_template_type','section'),(121,34,'_elementor_version','3.7.6'),(122,34,'_elementor_data','[]'),(123,30,'_elementor_page_assets','a:0:{}'),(124,30,'template_type','section-product'),(125,30,'include_in_zip','1'),(126,30,'elementor_pro_required',NULL),(127,30,'wp_page_template','elementor_canvas'),(128,35,'_elementor_edit_mode','builder'),(129,35,'_elementor_template_type','section'),(130,35,'_elementor_version','3.7.6'),(131,35,'_elementor_data','[{\"id\":\"47ab5dd3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"box_shadow_box_shadow\":{\"horizontal\":30,\"vertical\":30,\"blur\":80,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61573c75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12968b50\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36179e0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"ba66a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"600e5b4a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34c31d91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"2762e242\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5758d626\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a337300\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(132,36,'_elementor_edit_mode','builder'),(133,36,'_elementor_template_type','section'),(134,36,'_elementor_version','3.7.6'),(135,36,'_elementor_data','[]'),(136,35,'_elementor_page_assets','a:0:{}'),(137,35,'template_type','section-contact'),(138,35,'include_in_zip','1'),(139,35,'elementor_pro_required',NULL),(140,35,'wp_page_template','elementor_canvas'),(141,37,'_elementor_edit_mode','builder'),(142,37,'_elementor_template_type','section'),(143,37,'_elementor_version','3.7.6'),(144,37,'_elementor_data','[{\"id\":\"45c1a835\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"555c6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(145,38,'_elementor_edit_mode','builder'),(146,38,'_elementor_template_type','section'),(147,38,'_elementor_version','3.7.6'),(148,38,'_elementor_data','[]'),(149,37,'_elementor_page_assets','a:0:{}'),(150,37,'template_type','section-contact'),(151,37,'include_in_zip','1'),(152,37,'elementor_pro_required',NULL),(153,37,'wp_page_template','elementor_canvas'),(154,39,'_elementor_edit_mode','builder'),(155,39,'_elementor_template_type','section'),(156,39,'_elementor_version','3.7.6'),(157,40,'_wp_attached_file','2022/09/hero01.png'),(158,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:642;s:6:\"height\";i:1162;s:4:\"file\";s:18:\"2022/09/hero01.png\";s:8:\"filesize\";i:244607;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"hero01-166x300.png\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44863;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"hero01-566x1024.png\";s:5:\"width\";i:566;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:451537;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"hero01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22536;}}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:{}}}'),(159,40,'_elementor_source_image_hash','6ebec62f544cd54cf380dcb795df973ef20cce50'),(160,41,'_wp_attached_file','2022/09/icon01.png'),(161,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:868;s:6:\"height\";i:1569;s:4:\"file\";s:18:\"2022/09/icon01.png\";s:8:\"filesize\";i:43027;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"icon01-166x300.png\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2002;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"icon01-566x1024.png\";s:5:\"width\";i:566;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"icon01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:534;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"icon01-768x1388.png\";s:5:\"width\";i:768;s:6:\"height\";i:1388;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12643;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"icon01-850x1536.png\";s:5:\"width\";i:850;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14382;}}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:{}}}'),(162,41,'_elementor_source_image_hash','76578402234defa1fabe3bf7431146364003c26b'),(163,42,'_wp_attached_file','2022/09/hero02.png'),(164,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:642;s:6:\"height\";i:1162;s:4:\"file\";s:18:\"2022/09/hero02.png\";s:8:\"filesize\";i:358184;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"hero02-166x300.png\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68305;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"hero02-566x1024.png\";s:5:\"width\";i:566;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:841762;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"hero02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34698;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(165,42,'_elementor_source_image_hash','614b1485c73863fdf106f88d0981ea22251b99c7'),(166,43,'_wp_attached_file','2022/09/icon05.png'),(167,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:399;s:6:\"height\";i:399;s:4:\"file\";s:18:\"2022/09/icon05.png\";s:8:\"filesize\";i:12575;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"icon05-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7859;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"icon05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3459;}}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,43,'_elementor_source_image_hash','622481a3a4ae37dfb3d920bc25793677812e77a3'),(169,44,'_wp_attached_file','2022/09/icon04.png'),(170,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:399;s:6:\"height\";i:399;s:4:\"file\";s:18:\"2022/09/icon04.png\";s:8:\"filesize\";i:13209;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"icon04-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"icon04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(171,44,'_elementor_source_image_hash','1027b5e31c9ee482f54d22a206541f26f0167b2a'),(172,45,'_wp_attached_file','2022/09/icon02.png'),(173,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:868;s:6:\"height\";i:1569;s:4:\"file\";s:18:\"2022/09/icon02.png\";s:8:\"filesize\";i:42424;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"icon02-166x300.png\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2100;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"icon02-566x1024.png\";s:5:\"width\";i:566;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9077;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"icon02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:531;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"icon02-768x1388.png\";s:5:\"width\";i:768;s:6:\"height\";i:1388;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13050;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"icon02-850x1536.png\";s:5:\"width\";i:850;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14725;}}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:{}}}'),(174,45,'_elementor_source_image_hash','1e8d8c34831ee0f17f19ec3125db1d641ed4ab76'),(175,46,'_wp_attached_file','2022/09/icon03.png'),(176,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:399;s:6:\"height\";i:399;s:4:\"file\";s:18:\"2022/09/icon03.png\";s:8:\"filesize\";i:13028;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"icon03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"icon03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3640;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177,46,'_elementor_source_image_hash','fab378f85fde7fdfbfc4af862f95e132088bf5fe'),(178,47,'_wp_attached_file','2022/09/Bg01.png'),(179,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2095;s:6:\"height\";i:1606;s:4:\"file\";s:16:\"2022/09/Bg01.png\";s:8:\"filesize\";i:113844;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"Bg01-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28901;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"Bg01-1024x785.png\";s:5:\"width\";i:1024;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164428;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"Bg01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"Bg01-768x589.png\";s:5:\"width\";i:768;s:6:\"height\";i:589;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111172;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"Bg01-1536x1177.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:372962;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:18:\"Bg01-2048x1570.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1570;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:627214;}}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:{}}}'),(180,47,'_elementor_source_image_hash','f9199a918410bb9659c5dfd6946fdb0c935cd531'),(181,48,'_wp_attached_file','2022/09/icon001.png'),(182,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:114;s:4:\"file\";s:19:\"2022/09/icon001.png\";s:8:\"filesize\";i:3279;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:{}}}'),(183,48,'_elementor_source_image_hash','8a482942a45ee79868fbf34b27b00a0c21075f82'),(184,49,'_wp_attached_file','2022/09/Group-3.png'),(185,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:982;s:6:\"height\";i:789;s:4:\"file\";s:19:\"2022/09/Group-3.png\";s:8:\"filesize\";i:15262;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Group-3-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:386;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Group-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Group-3-768x617.png\";s:5:\"width\";i:768;s:6:\"height\";i:617;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1953;}}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:{}}}'),(186,49,'_elementor_source_image_hash','c033d995e0c1c63e59967f4ac8f3c8a7fc41f22a'),(187,50,'_wp_attached_file','2022/09/icon004.png'),(188,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:114;s:4:\"file\";s:19:\"2022/09/icon004.png\";s:8:\"filesize\";i:2869;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:{}}}'),(189,50,'_elementor_source_image_hash','384802a259b61b03ed7d0c4d217d8e858c014fc8'),(190,51,'_wp_attached_file','2022/09/Group-4.png'),(191,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:982;s:6:\"height\";i:789;s:4:\"file\";s:19:\"2022/09/Group-4.png\";s:8:\"filesize\";i:15263;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Group-4-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:386;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Group-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Group-4-768x617.png\";s:5:\"width\";i:768;s:6:\"height\";i:617;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1953;}}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:{}}}'),(192,51,'_elementor_source_image_hash','83c7159a16ee9f3756997352f2fa3ae769e16bde'),(193,52,'_wp_attached_file','2022/09/icon005.png'),(194,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:111;s:6:\"height\";i:114;s:4:\"file\";s:19:\"2022/09/icon005.png\";s:8:\"filesize\";i:3537;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:{}}}'),(195,52,'_elementor_source_image_hash','27940dd187f8e8d566cc6a30a9bc955dd9636669'),(196,53,'_wp_attached_file','2022/09/Group-6.png'),(197,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:982;s:6:\"height\";i:789;s:4:\"file\";s:19:\"2022/09/Group-6.png\";s:8:\"filesize\";i:15261;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Group-6-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:385;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Group-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Group-6-768x617.png\";s:5:\"width\";i:768;s:6:\"height\";i:617;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1952;}}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,53,'_elementor_source_image_hash','ccabf5f47ca45b4ae81280819559c9959d8b1fba'),(199,54,'_wp_attached_file','2022/09/icon006.png'),(200,54,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:114;s:4:\"file\";s:19:\"2022/09/icon006.png\";s:8:\"filesize\";i:5060;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:{}}}'),(201,54,'_elementor_source_image_hash','7543e694b94fe291825d62a4edd03f7927c9efad'),(202,55,'_wp_attached_file','2022/09/icon003.png'),(203,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:114;s:4:\"file\";s:19:\"2022/09/icon003.png\";s:8:\"filesize\";i:3654;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:{}}}'),(204,55,'_elementor_source_image_hash','f864d84baea22e2581dd733edb76983e05ef4112'),(205,56,'_wp_attached_file','2022/09/Group-5.png'),(206,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:982;s:6:\"height\";i:789;s:4:\"file\";s:19:\"2022/09/Group-5.png\";s:8:\"filesize\";i:15261;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Group-5-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:383;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Group-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Group-5-768x617.png\";s:5:\"width\";i:768;s:6:\"height\";i:617;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1951;}}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:{}}}'),(207,56,'_elementor_source_image_hash','579eb9f3ae022486ffec5ca1dff4ebbafd7b4b7b'),(208,57,'_wp_attached_file','2022/09/icon002.png'),(209,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:114;s:4:\"file\";s:19:\"2022/09/icon002.png\";s:8:\"filesize\";i:3131;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:{}}}'),(210,57,'_elementor_source_image_hash','443589fcece7e3499fd2ff11fa93e860b953c739'),(211,58,'_wp_attached_file','2022/09/jp01.jpg'),(212,58,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:16:\"2022/09/jp01.jpg\";s:8:\"filesize\";i:721178;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"jp01-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11805;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"jp01-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70334;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"jp01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"jp01-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45758;}}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,58,'_elementor_source_image_hash','60af11d586d9e7ac86f1473ed77e383ac9069ba6'),(214,59,'_wp_attached_file','2022/09/icon06.png'),(215,59,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1218;s:6:\"height\";i:812;s:4:\"file\";s:18:\"2022/09/icon06.png\";s:8:\"filesize\";i:24889;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"icon06-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1419;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"icon06-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5897;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"icon06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:286;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"icon06-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4242;}}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:{}}}'),(216,59,'_elementor_source_image_hash','909d9f86a3def649f14f0c6a62f4688bc67ee38b'),(217,60,'_wp_attached_file','2022/09/Bg.jpg'),(218,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:906;s:4:\"file\";s:14:\"2022/09/Bg.jpg\";s:8:\"filesize\";i:70220;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"Bg-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1459;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"Bg-1024x644.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:644;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7157;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"Bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:853;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"Bg-768x483.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4728;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(219,60,'_elementor_source_image_hash','207302362e692c9837b88d35b038483f278aa308'),(220,61,'_wp_attached_file','2022/09/border01.png'),(221,61,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1960;s:6:\"height\";i:1225;s:4:\"file\";s:20:\"2022/09/border01.png\";s:8:\"filesize\";i:65842;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"border01-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:667;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"border01-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2486;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"border01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:345;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"border01-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1629;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"border01-1536x960.png\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4569;}}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:{}}}'),(222,61,'_elementor_source_image_hash','53ee51716875b6b8e71bda31a0aa51e7cb78b2fe'),(223,62,'_wp_attached_file','2022/09/jp02.jpg'),(224,62,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:764;s:4:\"file\";s:16:\"2022/09/jp02.jpg\";s:8:\"filesize\";i:37195;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"jp02-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7611;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"jp02-1024x407.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27888;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"jp02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5326;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"jp02-768x306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19645;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"jp02-1536x611.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:611;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47660;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(225,62,'_elementor_source_image_hash','d5f5d75ac44640a69536ce3f2d58efb009542441'),(226,63,'_wp_attached_file','2022/09/jp04.jpg'),(227,63,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1116;s:4:\"file\";s:16:\"2022/09/jp04.jpg\";s:8:\"filesize\";i:73996;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"jp04-300x174.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6720;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"jp04-1024x595.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:595;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45566;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"jp04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3763;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"jp04-768x446.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27876;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"jp04-1536x893.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:893;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82595;}}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:{}}}'),(228,63,'_elementor_source_image_hash','8a96d7f9bfae68321ace1eeae6e0ca70588b6c0c'),(229,64,'_wp_attached_file','2022/09/Group-191.png'),(230,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:167;s:6:\"height\";i:480;s:4:\"file\";s:21:\"2022/09/Group-191.png\";s:8:\"filesize\";i:8717;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Group-191-104x300.png\";s:5:\"width\";i:104;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3053;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Group-191-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1070;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(231,64,'_elementor_source_image_hash','0fc567d5cbcfa090d2de19dcf0f3d987bc1433dd'),(232,65,'_wp_attached_file','2022/09/jp05.png'),(233,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1116;s:4:\"file\";s:16:\"2022/09/jp05.png\";s:8:\"filesize\";i:68744;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"jp05-300x174.png\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22018;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"jp05-1024x595.png\";s:5:\"width\";i:1024;s:6:\"height\";i:595;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133799;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"jp05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10392;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"jp05-768x446.png\";s:5:\"width\";i:768;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88129;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"jp05-1536x893.png\";s:5:\"width\";i:1536;s:6:\"height\";i:893;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:232060;}}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:{}}}'),(234,65,'_elementor_source_image_hash','79034f1608678a1abb822272559f52dadf282b31'),(235,66,'_wp_attached_file','2022/09/Group-194.png'),(236,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:167;s:6:\"height\";i:480;s:4:\"file\";s:21:\"2022/09/Group-194.png\";s:8:\"filesize\";i:8713;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Group-194-104x300.png\";s:5:\"width\";i:104;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3114;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Group-194-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1122;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(237,66,'_elementor_source_image_hash','5e3c3e4d1488a1879bd8af7e96759d2882517a0c'),(238,67,'_wp_attached_file','2022/09/jp06.png'),(239,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1116;s:4:\"file\";s:16:\"2022/09/jp06.png\";s:8:\"filesize\";i:51943;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"jp06-300x174.png\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16389;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"jp06-1024x595.png\";s:5:\"width\";i:1024;s:6:\"height\";i:595;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102413;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"jp06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7773;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"jp06-768x446.png\";s:5:\"width\";i:768;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67334;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"jp06-1536x893.png\";s:5:\"width\";i:1536;s:6:\"height\";i:893;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180551;}}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:{}}}'),(240,67,'_elementor_source_image_hash','1d25c5c30c51c2f0f7161b3d544c659e98a51589'),(241,68,'_wp_attached_file','2022/09/jp07.png'),(242,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:16:\"2022/09/jp07.png\";s:8:\"filesize\";i:64944;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"jp07-300x199.png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20662;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"jp07-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137082;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"jp07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9462;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"jp07-768x510.png\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89355;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"jp07-1536x1021.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1021;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240566;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(243,68,'_elementor_source_image_hash','4a82636ba5b62c36131f4cf3536e5c2c4e88a440'),(244,39,'_elementor_data','[{\"id\":\"4120e053\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5710b551\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27c9d41b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"402aec25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"359fea54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11284cc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"211d531f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2064c528\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"53551ee8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"de1edde\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78434a9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27812490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f826485\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d0db40\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7da1a427\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ed1fb62\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ad9084e\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"359c745b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"799c18d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5826436e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38c4a0a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"189878eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"129bee1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"34f0ab77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3787e012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"218a2941\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f6cd9f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59ca4705\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33ef4d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4eff9734\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"56343329\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"c0fae7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a206a6b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40bdca29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7f21ef9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4654d8e6\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1ff02ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db60002\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cdd9d7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ebcaab8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d831fc6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6980c159\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24b3fbe6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"75acfbf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ee50fde\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60e5644b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41c408c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68d3fdfc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"793f0ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96f3ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d22e8ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c425845\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7dba8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63e1de25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9144471\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26b0918a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5385fe59\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7db99975\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71bd1c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f2b705c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4a95ec88\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4485b410\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27f95b68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a7ac636\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"18959b4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"148af500\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"131ab52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"1978c914\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b78df13\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5bb3806e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2446b4f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4930510f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2970bc8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7cddfb86\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7e7e28a3\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"32d54a45\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7510da50\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3130160b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e65fb56\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"228fc25e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7637ab6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34f35d17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4f75c3a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ed9d9e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33fe6636\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2b3804eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5882fa51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6cbf96d8\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5606bf1b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"333a1615\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b961e3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39e5b283\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1af717bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"316fb67a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e635bec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"354acd7f\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"63eec2ce\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e44a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"514eee66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e68e5f6\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ad83a42\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1dc1e928\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d898e90\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e311166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d34c66f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a3b59ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d03fe64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ebc362\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1947673e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"724e9b2b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b3bf77f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32115ada\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"45151e15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"628aeba2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"657c0c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d67bd99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3733c954\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58bf9e0\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"211b73cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52c579f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4a551110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"691ec9e5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cdb00a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"423aea03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a6a96d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5277c809\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230d3d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7341a4eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1f309cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"628d1ea4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c86a909\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17cdac1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"27ec94e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91f9263\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"19b67e84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aaf0e27\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"76c52276\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76aa1f95\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cd4652c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"702fbc41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2f74863a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6690baed\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d3e790d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3814f9b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3afd7481\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(245,69,'_elementor_edit_mode','builder'),(246,69,'_elementor_template_type','section'),(247,69,'_elementor_version','3.7.6'),(248,69,'_elementor_data','[]'),(249,39,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(250,39,'template_type','single-home'),(251,39,'include_in_zip','1'),(252,39,'elementor_pro_required',NULL),(253,39,'wp_page_template','elementor_header_footer'),(254,70,'_elementor_edit_mode','builder'),(255,70,'_elementor_template_type','page'),(256,70,'_elementor_version','3.7.6'),(257,71,'_wp_attached_file','2022/09/icon09.png'),(258,71,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1166;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2022/09/icon09.png\";s:8:\"filesize\";i:279207;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"icon09-300x278.png\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84543;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"icon09-1024x948.png\";s:5:\"width\";i:1024;s:6:\"height\";i:948;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:667658;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"icon09-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30445;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"icon09-768x711.png\";s:5:\"width\";i:768;s:6:\"height\";i:711;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415982;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259,71,'_elementor_source_image_hash','fbbd3e60b892887067c3408e8e910ffe64db1115'),(260,72,'_wp_attached_file','2022/09/Union-11.png'),(261,72,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:555;s:4:\"file\";s:20:\"2022/09/Union-11.png\";s:8:\"filesize\";i:26383;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Union-11-300x87.png\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:788;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Union-11-1024x296.png\";s:5:\"width\";i:1024;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3251;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Union-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Union-11-768x222.png\";s:5:\"width\";i:768;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2263;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"Union-11-1536x444.png\";s:5:\"width\";i:1536;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5369;}}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:{}}}'),(262,72,'_elementor_source_image_hash','4c198eb15bc521758638c4915f8791753a55c0f8'),(263,73,'_wp_attached_file','2022/09/jp012.jpg'),(264,73,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:867;s:6:\"height\";i:1569;s:4:\"file\";s:17:\"2022/09/jp012.jpg\";s:8:\"filesize\";i:79664;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"jp012-166x300.jpg\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7707;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"jp012-566x1024.jpg\";s:5:\"width\";i:566;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58565;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"jp012-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4952;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"jp012-768x1390.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1390;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96694;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"jp012-849x1536.jpg\";s:5:\"width\";i:849;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113773;}}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:{}}}'),(265,73,'_elementor_source_image_hash','8dea274d6abae22e2dca935584f27eefae0b72db'),(266,74,'_wp_attached_file','2022/09/jp014.jpg'),(267,74,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:867;s:6:\"height\";i:1569;s:4:\"file\";s:17:\"2022/09/jp014.jpg\";s:8:\"filesize\";i:36132;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"jp014-166x300.jpg\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5409;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"jp014-566x1024.jpg\";s:5:\"width\";i:566;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31645;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"jp014-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2968;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"jp014-768x1390.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1390;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50299;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"jp014-849x1536.jpg\";s:5:\"width\";i:849;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58914;}}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:{}}}'),(268,74,'_elementor_source_image_hash','81abd5a792b828ecfc6466dc47c4b705b232b6db'),(269,75,'_wp_attached_file','2022/09/jp013.jpg'),(270,75,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:867;s:6:\"height\";i:1569;s:4:\"file\";s:17:\"2022/09/jp013.jpg\";s:8:\"filesize\";i:55236;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"jp013-166x300.jpg\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6777;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"jp013-566x1024.jpg\";s:5:\"width\";i:566;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44508;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"jp013-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4258;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"jp013-768x1390.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1390;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72977;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"jp013-849x1536.jpg\";s:5:\"width\";i:849;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86016;}}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:{}}}'),(271,75,'_elementor_source_image_hash','8757ca96f67ae6d3565848994aaa876d4c4897eb'),(272,76,'_wp_attached_file','2022/09/jp015.jpg'),(273,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:867;s:6:\"height\";i:1569;s:4:\"file\";s:17:\"2022/09/jp015.jpg\";s:8:\"filesize\";i:81735;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"jp015-166x300.jpg\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8635;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"jp015-566x1024.jpg\";s:5:\"width\";i:566;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61895;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"jp015-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4841;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"jp015-768x1390.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1390;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100326;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"jp015-849x1536.jpg\";s:5:\"width\";i:849;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117151;}}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:{}}}'),(274,76,'_elementor_source_image_hash','8dfeed3b28e101396eafa2df26dcf96aca3f091b'),(275,77,'_wp_attached_file','2022/09/influencer-8.jpg'),(276,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2022/09/influencer-8.jpg\";s:8:\"filesize\";i:52830;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"influencer-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10815;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"influencer-8-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75745;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"influencer-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3852;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"influencer-8-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48303;}}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:{}}}'),(277,77,'_elementor_source_image_hash','08c703ec6a8824e5976dbecac35b1465041b6c4b'),(278,78,'_wp_attached_file','2022/09/icon013.png'),(279,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:914;s:4:\"file\";s:19:\"2022/09/icon013.png\";s:8:\"filesize\";i:211270;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"icon013-236x300.png\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88354;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"icon013-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33340;}}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:{}}}'),(280,78,'_elementor_source_image_hash','44903dfac084f1f5a820e2381a552b6dd49f7575'),(281,79,'_wp_attached_file','2022/09/icon012.png'),(282,79,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:933;s:6:\"height\";i:914;s:4:\"file\";s:19:\"2022/09/icon012.png\";s:8:\"filesize\";i:263485;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"icon012-300x294.png\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"icon012-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32723;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"icon012-768x752.png\";s:5:\"width\";i:768;s:6:\"height\";i:752;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:580653;}}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:{}}}'),(283,79,'_elementor_source_image_hash','3a6e91567e5e0448d49e3ca47cdd39bd3cfdb714'),(284,80,'_wp_attached_file','2022/09/icon014.png'),(285,80,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1051;s:6:\"height\";i:914;s:4:\"file\";s:19:\"2022/09/icon014.png\";s:8:\"filesize\";i:358349;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"icon014-300x261.png\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100316;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"icon014-1024x891.png\";s:5:\"width\";i:1024;s:6:\"height\";i:891;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1050209;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"icon014-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32087;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"icon014-768x668.png\";s:5:\"width\";i:768;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:606304;}}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:{}}}'),(286,80,'_elementor_source_image_hash','402c9eff39b8158b0f7249dc30d5cef03b4417ea'),(287,70,'_elementor_data','[{\"id\":\"c10a5d0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58ed223b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68283a4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d334f7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42b23134\",\"elType\":\"widget\",\"settings\":{\"title\":\"About influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6eca54c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"469b14c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"16d5071c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21c324ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c87601b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e75df7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"337ae840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c398597\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":73,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp012.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d5b48bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1c7ee516\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ace4503\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5bdbabf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":74,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp014.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7565c772\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3cc19589\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6df92900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"423bfe71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":75,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp013.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5239b792\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ef602cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"582d4bdc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23ba0f58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":76,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp015.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"46eff66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"144cd562\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1972c433\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25b6e8ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help Brands <br>work more efficiently \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"133ece89\",\"elType\":\"widget\",\"settings\":{\"title\":\"by connecting them to Influencers.\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cab1283\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6f29ec1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit suspendisse, etiam vulputate gravida netus parturient est imperdiet, cubilia leo aliquam magnis fames ullamcorper semper. Massa bibendum aenean aliquet sociosqu mauris dignissim curae ad, luctus at sapien metus suscipit eros convallis, quis phasellus proin habitant egestas condimentum potenti.<\\/p><p>\\u00a0<\\/p><p>Semper nascetur ultricies risus maecenas malesuada ac, metus leo pellentesque imperdiet porta cursus, arcu nisi per class lacus. Eleifend magnis sociis volutpat nullam aliquet scelerisque hendrerit hac sagittis, neque eget proin molestie lacinia erat tincidunt litora tristique nisi, pulvinar ligula lectus nisl et augue in tempor.<\\/p>\",\"text_columns\":\"2\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_columns_mobile\":\"1\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"574fd609\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39406438\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2644a5a6\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"89d61da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customers\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7c17ba93\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"515561\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"M +\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6fce778b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Profiles Monitored\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"194709ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10bc69b5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"125fc91b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nEmployees\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1d5c9593\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"515e3927\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6c4b6781\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creators in our database\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef771ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"392ee2fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54b3b65b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c7da821\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7cef1658\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9d808c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c510c29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"120fe7b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b9182bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75bc8195\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9ec07b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"229a5f16\",\"elType\":\"widget\",\"settings\":{\"style\":\"dashed\",\"look\":\"line_text\",\"text\":\"brand support\",\"text_spacing\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"text_color\":\"globals\\/colors?id=text\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22c96757\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d88ed43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15c0acf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leadership Team\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2151f9cc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"79f1d453\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14bb652a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7271e60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51f0f9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jamie Foxx\",\"description_text\":\"CEO influence\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2e465346\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5759929\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2efd7090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Miley Cyrus\",\"description_text\":\"Chief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"39a3ae5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62095b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":27,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7adfe626\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jonathan \",\"description_text\":\"SVP, Head of Sales\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"121dc9a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e796c8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d3c55ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6bcfa32a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Max Powers\",\"description_text\":\"\\nChief Customer Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7e209004\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"405b1e74\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5de9c738\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Roman Kazmin\",\"description_text\":\"\\nGeneral Manager\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"43db4ca9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b7dce98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-8.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b4ea0e7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Bethany Ellis\",\"description_text\":\"\\nChief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ea8b7d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_overlay_position_mobile\":\"center center\",\"background_overlay_repeat_tablet\":\"repeat-y\",\"background_overlay_repeat_mobile\":\"repeat-y\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76519440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"471ec14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34e1f1e8\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"align_tablet\":\"center\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"3a23b7a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"bottom\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a70973c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5bfe26ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3649a632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"43b5b751\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ffd63b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6abf3b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"208c0dcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"33555df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66017432\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65b33272\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54b12c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c1bf92d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#9ECAD7\",\"background_image\":{\"id\":78,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon013.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70efd49b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"CAN WE HELP \",\"description_text\":\"Looking for product support\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"2dac5eb2\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3f716155\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#929CFF\",\"background_image\":{\"id\":79,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon012.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"242bba3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Find Influencer\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=accent\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5b500e77\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1a452df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FF9C93\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon014.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1503adec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"creator management\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"60298fd3\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(288,81,'_elementor_edit_mode','builder'),(289,81,'_elementor_template_type','page'),(290,81,'_elementor_version','3.7.6'),(291,81,'_elementor_data','[]'),(292,70,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(293,70,'template_type','single-page'),(294,70,'include_in_zip','1'),(295,70,'elementor_pro_required',NULL),(296,70,'wp_page_template','elementor_header_footer'),(297,82,'_elementor_edit_mode','builder'),(298,82,'_elementor_template_type','page'),(299,82,'_elementor_version','3.7.6'),(300,82,'_elementor_data','[{\"id\":\"491b4552\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52547d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7eee68db\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dfa189c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b4bfeb4\",\"elType\":\"widget\",\"settings\":{\"title\":\" influence Page\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39473cf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b0b294\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"43a1f718\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47b1971b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b182840\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"184a5b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f38e6ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"222e72ac\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"16ed0df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"bottom\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36a9e149\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45601e03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"61e5b50d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"768fb872\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5af94281\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"648c15f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"6190df95\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"19d56df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34b0385f\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"232cc3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"544797ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"493e5622\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5798c551\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16ff2527\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"73d92c59\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ddc9a0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69b94f42\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"48388702\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"397e1fab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467c7d86\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6984de43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7799c5cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"116b34f5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16800333\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"472e0538\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2d50828e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28b4ab08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"8c3f432\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2bb2406b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3188ac41\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37613952\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67adf232\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39ca5c36\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45f3868f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cdd2f38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"795ddb1f\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48c4c202\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"770baf42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e00a44a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4690752e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c30e85b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"561a77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5feb38ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d70a28a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b07d343\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1404598a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"469cbc21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ec165df\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"492f1caa\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b600eac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4e7e69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2cb02e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18ab89dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16858cdc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4afea3e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fb2c206\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bf0e534\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65e883bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(301,83,'_elementor_edit_mode','builder'),(302,83,'_elementor_template_type','page'),(303,83,'_elementor_version','3.7.6'),(304,83,'_elementor_data','[]'),(305,82,'_elementor_page_assets','a:1:{s:6:\"styles\";a:27:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";}}'),(306,82,'template_type','single-page'),(307,82,'include_in_zip','1'),(308,82,'elementor_pro_required',NULL),(309,82,'wp_page_template','elementor_header_footer'),(310,84,'_elementor_edit_mode','builder'),(311,84,'_elementor_template_type','page'),(312,84,'_elementor_version','3.7.6'),(313,84,'_elementor_data','[{\"id\":\"6a31f13c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68165287\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c3fd9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d5b8a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"625ca0b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Work\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d4ed7e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4574a48d\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6cdeed55\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"102341d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"651ce3eb\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3046a001\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67cc6fb8\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65f97eab\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76674e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3503af39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"62e7e340\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3d226dd4\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4414da40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"317e3f18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28833ca7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f480c57\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d4261e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b3cad0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b9595ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e91e77f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71f0ced0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c88d9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b162ba4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5643c662\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3c46ea52\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5aa37c22\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b6aaaa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f064e97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6c83f8be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c7d7737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c508bc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"29c61813\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"462756de\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c1ef180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f70ecf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"795e11f8\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f1de342\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"715c8a91\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"711e32d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a96d5b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"528baa5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757465bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38a6cc21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"2f025960\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"eb382e6\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"474ed7ba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ff9fb10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c55a2a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9306855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#9ECAD7\",\"background_image\":{\"id\":78,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon013.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"112cc8df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"CAN WE HELP \",\"description_text\":\"Looking for product support\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6dc84b42\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1a731f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#929CFF\",\"background_image\":{\"id\":79,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon012.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"321dedc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Find Influencer\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=accent\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6389cdb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5195525e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FF9C93\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon014.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d599e1e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"creator management\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7c88c2bc\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(314,85,'_elementor_edit_mode','builder'),(315,85,'_elementor_template_type','page'),(316,85,'_elementor_version','3.7.6'),(317,85,'_elementor_data','[]'),(318,84,'_elementor_page_assets','a:1:{s:6:\"styles\";a:24:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";}}'),(319,84,'template_type','single-page'),(320,84,'include_in_zip','1'),(321,84,'elementor_pro_required',NULL),(322,84,'wp_page_template','elementor_header_footer'),(323,86,'_elementor_edit_mode','builder'),(324,86,'_elementor_template_type','section'),(325,86,'_elementor_version','3.7.6'),(326,86,'_elementor_data','[{\"id\":\"25c11bd1\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"height\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"background_position\":\"bottom left\",\"background_position_mobile\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_overlay_position_tablet\":\"center center\",\"background_overlay_repeat_tablet\":\"repeat-y\",\"background_overlay_repeat_mobile\":\"repeat-y\",\"background_overlay_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"308af89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f736c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d10dff7\",\"elType\":\"widget\",\"settings\":{\"title\":\"page not found\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe90134\",\"elType\":\"widget\",\"settings\":{\"text\":\"Back to homepage\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(327,87,'_elementor_edit_mode','builder'),(328,87,'_elementor_template_type','section'),(329,87,'_elementor_version','3.7.6'),(330,87,'_elementor_data','[]'),(331,86,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(332,86,'template_type','single-404'),(333,86,'include_in_zip','1'),(334,86,'elementor_pro_required',NULL),(335,86,'wp_page_template','elementor_canvas'),(336,88,'_elementor_edit_mode','builder'),(337,88,'_elementor_template_type','page'),(338,88,'_elementor_version','3.7.6'),(339,88,'_elementor_data','[{\"id\":\"700ff522\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17fd7144\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e3d23ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2de4725e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3aeefa37\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115ca159\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"785e9363\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"3eabf9f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"138a6d4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6665a429\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"93887d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fbdcc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38f33155\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4565ba2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7885ed9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8685eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#9ECAD7\",\"background_image\":{\"id\":78,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon013.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1779b986\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"CAN WE HELP \",\"description_text\":\"Looking for product support\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5a16194e\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"657ba979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#929CFF\",\"background_image\":{\"id\":79,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon012.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43910dce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Find Influencer\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=accent\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"48267b06\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3985b08b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FF9C93\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon014.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f472fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"creator management\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"73a62e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(340,89,'_elementor_edit_mode','builder'),(341,89,'_elementor_template_type','page'),(342,89,'_elementor_version','3.7.6'),(343,89,'_elementor_data','[]'),(344,88,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(345,88,'template_type','single-page'),(346,88,'include_in_zip','1'),(347,88,'elementor_pro_required',NULL),(348,88,'wp_page_template','elementor_header_footer'),(349,90,'_elementor_edit_mode','builder'),(350,90,'_elementor_template_type','page'),(351,90,'_elementor_version','3.7.6'),(352,91,'_wp_attached_file','2022/09/icon010.png'),(353,91,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:493;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2022/09/icon010.png\";s:8:\"filesize\";i:221434;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"icon010-247x300.png\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77705;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"icon010-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28809;}}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:{}}}'),(354,91,'_elementor_source_image_hash','058c65d9ced386488fd2034989e1fed9d91b0d6f'),(355,90,'_elementor_data','[{\"id\":\"5f5cde81\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ec8d60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2de08ae9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ec37a04\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31902fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\t\\nPricing\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dd78db\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b4bd3af\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"53f1d154\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe4d67b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cffba60\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.22,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25616f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5adb80e5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b69620c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a822c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencers ad posts and stories monitoring\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2193f977\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ff2cee8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27b9a41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"474fc663\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":91,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon010.png\"},\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7af6bf52\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66d2c927\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"24401ce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"4a8f13d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"73659e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"179ae27c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"150\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bf2fdd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"7fd725b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"39dac651\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"21c7c195\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6382ece8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible pricing for every business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ffdcdaa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upgrade, downgrade or cancel at any time\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"303d507a\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"644871c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Start free trial\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"40cf726f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4487cbc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"24fd6a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3c19ddb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(356,92,'_elementor_edit_mode','builder'),(357,92,'_elementor_template_type','page'),(358,92,'_elementor_version','3.7.6'),(359,92,'_elementor_data','[]'),(360,90,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(361,90,'template_type','single-page'),(362,90,'include_in_zip','1'),(363,90,'elementor_pro_required',NULL),(364,90,'wp_page_template','elementor_header_footer'),(365,93,'_elementor_edit_mode','builder'),(366,93,'_elementor_template_type','page'),(367,93,'_elementor_version','3.7.6'),(368,93,'_elementor_data','[{\"id\":\"55a2034a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"603ba392\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2669f1f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e187960\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ab95a09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17b70ce7\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31813bf4\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"69015c4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d4ef5a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af5cfd7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"638eb3e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8e0a3ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55876d55\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f601d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"283243e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4da419af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c301f57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b9a9997\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d29e4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad6214d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f496e2b\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"354ff95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50485c16\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7f02a0fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42b6c8cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"274469c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67ba6ae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4cfcf3e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5615cc0e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"438a2345\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5de523ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7a4481fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3059a78e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22365dd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5119f667\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b9ab774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7943be4f\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3191a1d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a331915\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"45ff1951\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fd8281d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1676bfbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6599aaca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42f2d0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e691ba3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(369,94,'_elementor_edit_mode','builder'),(370,94,'_elementor_template_type','page'),(371,94,'_elementor_version','3.7.6'),(372,94,'_elementor_data','[]'),(373,93,'_elementor_page_assets','a:1:{s:6:\"styles\";a:4:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";}}'),(374,93,'template_type','single-page'),(375,93,'include_in_zip','1'),(376,93,'elementor_pro_required',NULL),(377,93,'wp_page_template','elementor_header_footer'),(378,95,'_elementor_edit_mode','builder'),(379,95,'_elementor_template_type','page'),(380,95,'_elementor_version','3.7.6'),(381,95,'_elementor_data','[{\"id\":\"61240d9d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"789800fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12265a40\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50857ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e802850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42d0ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5145b96e\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"15ce7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"304dc7c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15de9b4e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"342fabbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44b1c301\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leadership Team\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77432c03\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1eee4263\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1dddfbeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60167496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5e15f904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jamie Foxx\",\"description_text\":\"CEO influence\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3ddf145e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"110c5f6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71a2bcce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Miley Cyrus\",\"description_text\":\"Chief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16f8657d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75d15ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":27,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71ef294c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jonathan \",\"description_text\":\"SVP, Head of Sales\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78ab70ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60e6f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15e3d14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b15c63b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Max Powers\",\"description_text\":\"\\nChief Customer Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"74da36f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33f32939\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d747bb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Roman Kazmin\",\"description_text\":\"\\nGeneral Manager\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7157c969\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68841edd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-8.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d5d5fea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Bethany Ellis\",\"description_text\":\"\\nChief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(382,96,'_elementor_edit_mode','builder'),(383,96,'_elementor_template_type','page'),(384,96,'_elementor_version','3.7.6'),(385,96,'_elementor_data','[]'),(386,95,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(387,95,'template_type','single-page'),(388,95,'include_in_zip','1'),(389,95,'elementor_pro_required',NULL),(390,95,'wp_page_template','elementor_header_footer'),(391,97,'_elementor_edit_mode','builder'),(392,97,'_elementor_template_type','page'),(393,97,'_elementor_version','3.7.6'),(394,97,'_elementor_data','[{\"id\":\"343bc753\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"642580fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10db2ac8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fc35d49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d750ce6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29b93638\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24e2d9e0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"1af7637\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46fa09cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22e46354\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"204812b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f56e106\",\"elType\":\"widget\",\"settings\":{\"title\":\"Last News\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c69fc05\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(395,98,'_elementor_edit_mode','builder'),(396,98,'_elementor_template_type','page'),(397,98,'_elementor_version','3.7.6'),(398,98,'_elementor_data','[]'),(399,97,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(400,97,'template_type','single-page'),(401,97,'include_in_zip','1'),(402,97,'elementor_pro_required',NULL),(403,97,'wp_page_template','elementor_header_footer'),(404,99,'_elementor_edit_mode','builder'),(405,99,'_elementor_template_type','section'),(406,99,'_elementor_version','3.7.6'),(407,100,'_wp_attached_file','2022/09/icon011.png'),(408,100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1091;s:6:\"height\";i:914;s:4:\"file\";s:19:\"2022/09/icon011.png\";s:8:\"filesize\";i:269332;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"icon011-300x251.png\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81563;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"icon011-1024x858.png\";s:5:\"width\";i:1024;s:6:\"height\";i:858;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:763459;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"icon011-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32354;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"icon011-768x643.png\";s:5:\"width\";i:768;s:6:\"height\";i:643;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:440525;}}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:{}}}'),(409,100,'_elementor_source_image_hash','209ce0e0b8d8193340abf61cceca20ff3774e5da'),(410,101,'_wp_attached_file','2022/09/BG-06.png'),(411,101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1899;s:6:\"height\";i:1235;s:4:\"file\";s:17:\"2022/09/BG-06.png\";s:8:\"filesize\";i:124047;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"BG-06-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9851;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"BG-06-1024x666.png\";s:5:\"width\";i:1024;s:6:\"height\";i:666;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55940;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"BG-06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"BG-06-768x499.png\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36960;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"BG-06-1536x999.png\";s:5:\"width\";i:1536;s:6:\"height\";i:999;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97173;}}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:{}}}'),(412,101,'_elementor_source_image_hash','fc34dfb35826dbb7ab183ad08f9b8e4c2c91ad41'),(413,99,'_elementor_data','[{\"id\":\"7aa241ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6484961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b07ddfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5758a78e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"759d16ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single Post \",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"590dcd02\",\"elType\":\"widget\",\"settings\":{\"title\":\"A complete guide on Youtube marketing strategies\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d1c68bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"4d29ddfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a9f5a8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e9bc818\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":101,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/BG-06.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36a8432c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ee1f88f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"28 may 2022\",\"selected_icon\":{\"value\":\"icon icon-calendar-full\",\"library\":\"ekiticons\"},\"_id\":\"dcd53c3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=d593777\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3bc9e867\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing, elit accumsan convallis nisl class facilisi, augue cubilia tortor arcu volutpat. Senectus sollicitudin penatibus vehicula mauris sagittis aenean aliquam, vel nullam dui placerat inceptos mattis, magna libero suscipit eleifend vitae est. Suspendisse odio a ornare libero senectus mollis curae, enim lacus pretium at faucibus phasellus.<\\/p><p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget pharetra, fusce ornare parturient tempus leo rutrum id eu. Sagittis vivamus scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis luctus facilisi, eleifend lobortis ut porttitor mus nostra eu ornare, curae lacus etiam tellus pellentesque magnis.<\\/p>\",\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74a67a5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4339f14b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1eaa2841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":100,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon011.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"41bb76c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"656f82af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lending a Helping Paw\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d5a731\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget\\u00a0 scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis luctus facilisi, eleifend lobortis ut porttitor mus nostra eu ornare, curae lacus etiam tellus pellentesque magnis.<\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ad3eb9b\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8717e6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing, elit accumsan convallis nisl class facilisi, augue cubilia tortor arcu volutpat. Senectus sollicitudin penatibus vehicula mauris sagittis aenean aliquam, vel nullam dui placerat inceptos mattis, magna libero suscipit eleifend vitae est. Suspendisse odio a ornare libero senectus mollis curae, enim lacus pretium at faucibus phasellus.<\\/p><p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget pharetra, fusce ornare parturient tempus leo rutrum id eu. Sagittis vivamus scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis\\u00a0<\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ad3eb9b\",\"text_color\":\"globals\\/colors?id=text\"},\"text_columns\":\"2\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_columns_mobile\":\"1\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dcf4b9c\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":21,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-5.jpg\"},{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},{\"id\":77,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-8.jpg\"},{\"id\":33,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-9.jpg\"}],\"thumbnail_size\":\"full\",\"gallery_columns\":\"6\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=ba131b5\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"7d134d55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mauris varius vitae tristique ridiculus tempor ullamcorper semper mus neque ad magnis, conubia accumsan quisque interdum penatibus sociis scelerisque ac fermentum montes consequat dictumst, tincidunt inceptos leo cubilia curae mi aptent porttitor libero imperdiet. Netus facilisis suspendisse luctus suscipit nunc posuere in, diam tellus pretium fringilla sagittis magnis, orci vitae vivamus sodales sociis facilisi.<\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ad3eb9b\",\"text_color\":\"globals\\/colors?id=text\"},\"text_columns\":\"1\",\"_margin\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b3cbf07\",\"elType\":\"widget\",\"settings\":{\"style\":\"dashed\",\"text\":\"Divider\",\"__globals__\":{\"color\":\"globals\\/colors?id=9973e78\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6cf414b8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7A7A7A4F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"607f3ad4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a3596a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share :\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"63710d50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.966000000000001,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f7cf45c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7A7A7A4F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2383177e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"596507f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"195800e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"594bc27b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Location\",\"description_text\":\"Jl Soekarno-hatta 03\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"description_typography_typography\":\"globals\\/typography?id=41b9d89\",\"title_color\":\"globals\\/colors?id=primary\",\"description_color\":\"globals\\/colors?id=primary\",\"_background_color\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#03031B\",\"title_color\":\"#03031B\",\"description_color\":\"#03031B\",\"_background_color\":\"#FDE02C6B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2ca12559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"021-25400-8900\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"description_typography_typography\":\"globals\\/typography?id=41b9d89\",\"title_color\":\"globals\\/colors?id=primary\",\"description_color\":\"globals\\/colors?id=primary\",\"_background_color\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#03031B\",\"title_color\":\"#03031B\",\"description_color\":\"#03031B\",\"_background_color\":\"#FDE02C6B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"519497c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Location\",\"description_text\":\"petcute@mail.com\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"description_typography_typography\":\"globals\\/typography?id=41b9d89\",\"title_color\":\"globals\\/colors?id=primary\",\"description_color\":\"globals\\/colors?id=primary\",\"_background_color\":\"\"},\"content_vertical_alignment\":\"middle\",\"_padding\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#03031B\",\"title_color\":\"#03031B\",\"description_color\":\"#03031B\",\"_background_color\":\"#FDE02C6B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a77b3a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7A7A7A4F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"679c5972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"453273ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Post\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dbacab5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7A7A7A4F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12650ac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6deb9c6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f740d81\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"080d4ff\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4ab6cc1\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"b18cd1e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"41f72c1\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=7679034\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=7679034\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(414,102,'_elementor_edit_mode','builder'),(415,102,'_elementor_template_type','section'),(416,102,'_elementor_version','3.7.6'),(417,102,'_elementor_data','[]'),(418,99,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(419,99,'template_type','single-post'),(420,99,'include_in_zip','1'),(421,99,'elementor_pro_required',NULL),(422,99,'wp_page_template','elementor_header_footer'),(423,103,'_elementor_edit_mode','builder'),(424,103,'_elementor_template_type','page'),(425,103,'_elementor_version','3.7.6'),(426,103,'_elementor_data','[{\"id\":\"718e901d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e64c49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-16.png\",\"id\":1435,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b123b36\",\"elType\":\"section\",\"settings\":{\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c28bdd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31b3524f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"vh\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"41a7eea1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Shoutcart Support\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d593777\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ff089b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"747f1bad\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"64c36af8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":10,\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5c7038\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"322a083e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f7dfe9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"HELLO ! HOW CAN WE HELP ?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22407e82\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4922a2a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c5edf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3357289d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"6abe094a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"14281f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e9404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a9fd33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"54d3035a\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"565630f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a44a208\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Social Media\",\"color\":\"#B3B3B3\",\"text_color\":\"#181B31\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_spacing\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\",\"text_color\":\"globals\\/colors?id=primary\",\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"587a5e2a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"ee4a3f8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"946f9c1\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"2d0caaa\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"b971598\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"5110965\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=349f2af\",\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"522bc997\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":438,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":91,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(427,104,'_elementor_edit_mode','builder'),(428,104,'_elementor_template_type','page'),(429,104,'_elementor_version','3.7.6'),(430,104,'_elementor_data','[]'),(431,103,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(432,103,'template_type','single-page'),(433,103,'include_in_zip','1'),(434,103,'elementor_pro_required',NULL),(435,103,'wp_page_template','elementor_header_footer'),(436,105,'_elementor_edit_mode','builder'),(437,105,'_elementor_template_type','section'),(438,105,'_elementor_version','3.7.6'),(439,105,'_elementor_data','[{\"id\":\"c3abdc2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a32f675\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67133604\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b4b5796\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.331999999999994,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false},{\"id\":\"3206095c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74f70725\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(440,105,'_elementor_page_assets','a:0:{}'),(441,106,'_elementor_edit_mode','builder'),(442,106,'_elementor_template_type','section'),(443,106,'_elementor_version','3.7.6'),(444,106,'_elementor_data','[{\"id\":\"198b6884\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58d23d7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"439e835\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63665b24\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bcc4cd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ea76c88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31490ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"799b7cc6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2e0db5f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2df6d3cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71eee99\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"119f70b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61d30137\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"50\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58bdcafb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"403d2f25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a37501e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"157faa65\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"2571ab5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d9881ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c07b88b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4c254124\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fda977b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d671131\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1e84afbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d9fe425\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7beb4957\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68c0c312\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b223fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505ee739\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70146ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36e129ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(445,106,'_elementor_page_assets','a:0:{}'),(446,107,'_elementor_edit_mode','builder'),(447,107,'_elementor_template_type','section'),(448,107,'_elementor_version','3.7.6'),(449,107,'_elementor_data','[{\"id\":\"6a2469ae\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"387ea4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68df035e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-1.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f014547\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"681fce38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"572a9e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"39d57daf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Snoop Dogg\",\"description_text\":\"Food Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3f3a0bed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56bbad32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"407b0ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e3f5609\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"7b67359f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fb2cd5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Julia Roberts\",\"description_text\":\"Food Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"71c9f648\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"516af77a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":21,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-5.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d297b47\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fc472e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"5f064431\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"26ffebcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Will Smith\",\"description_text\":\"Food Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"58f7b91a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39da4d27\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ce23129\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f4cac01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"5cb376a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a5fc3a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Julie Estelle\",\"description_text\":\"Food Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(450,107,'_elementor_page_assets','a:0:{}'),(451,108,'_elementor_edit_mode','builder'),(452,108,'_elementor_template_type','section'),(453,108,'_elementor_version','3.7.6'),(454,108,'_elementor_data','[{\"id\":\"faaf0b6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"765be07\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c16393c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":25,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-2.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71d0bba8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5aa91a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"4a01f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ae7f17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Daniel Radcliffe\",\"description_text\":\"Gaming Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"125ed36c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47e1800a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-12.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"630d5176\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"190784f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"2bc964a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"eee9e35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Ryan Gosling\",\"description_text\":\"Gaming Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"17bd37fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"512758cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":27,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-3.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"43469360\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19834751\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"6f1c5ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c24a454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Will Smith\",\"description_text\":\"Gaming Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34c54ef4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20974f25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-10.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26aa1fd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"169bbdbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3b714935\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"17cb825b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Julie Estelle\",\"description_text\":\"Gaming Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(455,108,'_elementor_page_assets','a:0:{}'),(456,109,'_elementor_edit_mode','builder'),(457,109,'_elementor_template_type','section'),(458,109,'_elementor_version','3.7.6');
INSERT INTO `wp_postmeta` VALUES (459,109,'_elementor_data','[{\"id\":\"12637087\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3567e06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ff83c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36f3b5c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61db3692\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"53ec2855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e58c1b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Snoop Dogg\",\"description_text\":\"Finance Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15445b89\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"528afe53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-10.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77b24589\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65e41f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"50565368\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b98b1e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"rena Roberts\",\"description_text\":\"Finance Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2d40fd31\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"235e509\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-11.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"585da720\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"146d7b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"1b35eeee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"41089522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Julie Estelle\",\"description_text\":\"Finance Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1fdb23f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54ccd907\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-9.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":19,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon07.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f4feaa2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":0,\"bottom\":\"7\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=63068bb\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27b84d91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"f347ea2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":49,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"662bcf63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Steven Seagal\",\"description_text\":\"Finance Influencer\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(460,109,'_elementor_page_assets','a:0:{}'),(461,110,'_elementor_edit_mode','builder'),(462,110,'_elementor_template_type','section'),(463,110,'_elementor_version','3.7.6'),(464,110,'_elementor_data','[{\"id\":\"47ab5dd3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"box_shadow_box_shadow\":{\"horizontal\":30,\"vertical\":30,\"blur\":80,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61573c75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12968b50\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36179e0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"ba66a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"600e5b4a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34c31d91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"2762e242\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5758d626\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a337300\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(465,110,'_elementor_page_assets','a:0:{}'),(466,111,'_elementor_edit_mode','builder'),(467,111,'_elementor_template_type','section'),(468,111,'_elementor_version','3.7.6'),(469,111,'_elementor_data','[{\"id\":\"45c1a835\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"555c6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(470,111,'_elementor_page_assets','a:0:{}'),(471,112,'_elementor_edit_mode','builder'),(472,112,'_elementor_template_type','section'),(473,112,'_elementor_version','3.7.6'),(474,112,'_elementor_data','[{\"id\":\"4120e053\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5710b551\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27c9d41b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"402aec25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"359fea54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11284cc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"211d531f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2064c528\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"53551ee8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"de1edde\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78434a9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27812490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f826485\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d0db40\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7da1a427\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ed1fb62\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ad9084e\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"359c745b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"799c18d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5826436e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38c4a0a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"189878eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"129bee1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"34f0ab77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3787e012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"218a2941\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f6cd9f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59ca4705\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33ef4d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4eff9734\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"56343329\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"c0fae7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a206a6b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40bdca29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7f21ef9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4654d8e6\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1ff02ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db60002\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cdd9d7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ebcaab8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d831fc6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6980c159\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24b3fbe6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"75acfbf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ee50fde\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60e5644b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41c408c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68d3fdfc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"793f0ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96f3ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d22e8ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c425845\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7dba8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63e1de25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9144471\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26b0918a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5385fe59\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7db99975\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71bd1c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f2b705c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4a95ec88\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4485b410\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27f95b68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a7ac636\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"18959b4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"148af500\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"131ab52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"1978c914\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b78df13\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5bb3806e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2446b4f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4930510f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2970bc8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7cddfb86\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7e7e28a3\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"32d54a45\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7510da50\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3130160b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e65fb56\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"228fc25e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7637ab6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34f35d17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4f75c3a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ed9d9e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33fe6636\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2b3804eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5882fa51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6cbf96d8\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5606bf1b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"333a1615\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b961e3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39e5b283\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1af717bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"316fb67a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e635bec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"354acd7f\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"63eec2ce\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e44a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"514eee66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e68e5f6\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ad83a42\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1dc1e928\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d898e90\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e311166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d34c66f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a3b59ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d03fe64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ebc362\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1947673e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"724e9b2b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b3bf77f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32115ada\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"45151e15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"628aeba2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"657c0c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d67bd99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3733c954\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58bf9e0\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"211b73cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52c579f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4a551110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"691ec9e5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cdb00a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"423aea03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a6a96d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5277c809\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230d3d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7341a4eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1f309cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"628d1ea4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c86a909\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17cdac1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"27ec94e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91f9263\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"19b67e84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aaf0e27\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"76c52276\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76aa1f95\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cd4652c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"702fbc41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2f74863a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6690baed\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d3e790d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3814f9b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3afd7481\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(475,112,'_elementor_page_assets','a:0:{}'),(476,113,'_elementor_edit_mode','builder'),(477,113,'_elementor_template_type','page'),(478,113,'_elementor_version','3.7.6'),(479,113,'_elementor_data','[{\"id\":\"c10a5d0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58ed223b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68283a4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d334f7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42b23134\",\"elType\":\"widget\",\"settings\":{\"title\":\"About influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6eca54c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"469b14c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"16d5071c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21c324ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c87601b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e75df7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"337ae840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c398597\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":73,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp012.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d5b48bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1c7ee516\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ace4503\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5bdbabf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":74,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp014.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7565c772\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3cc19589\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6df92900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"423bfe71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":75,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp013.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5239b792\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ef602cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"582d4bdc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23ba0f58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":76,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp015.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"46eff66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"144cd562\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1972c433\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25b6e8ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help Brands <br>work more efficiently \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"133ece89\",\"elType\":\"widget\",\"settings\":{\"title\":\"by connecting them to Influencers.\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cab1283\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6f29ec1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit suspendisse, etiam vulputate gravida netus parturient est imperdiet, cubilia leo aliquam magnis fames ullamcorper semper. Massa bibendum aenean aliquet sociosqu mauris dignissim curae ad, luctus at sapien metus suscipit eros convallis, quis phasellus proin habitant egestas condimentum potenti.<\\/p><p>\\u00a0<\\/p><p>Semper nascetur ultricies risus maecenas malesuada ac, metus leo pellentesque imperdiet porta cursus, arcu nisi per class lacus. Eleifend magnis sociis volutpat nullam aliquet scelerisque hendrerit hac sagittis, neque eget proin molestie lacinia erat tincidunt litora tristique nisi, pulvinar ligula lectus nisl et augue in tempor.<\\/p>\",\"text_columns\":\"2\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_columns_mobile\":\"1\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"574fd609\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39406438\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2644a5a6\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"89d61da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customers\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7c17ba93\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"515561\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"M +\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6fce778b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Profiles Monitored\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"194709ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10bc69b5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"125fc91b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nEmployees\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1d5c9593\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"515e3927\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6c4b6781\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creators in our database\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef771ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"392ee2fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54b3b65b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c7da821\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7cef1658\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9d808c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c510c29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"120fe7b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b9182bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75bc8195\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9ec07b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"229a5f16\",\"elType\":\"widget\",\"settings\":{\"style\":\"dashed\",\"look\":\"line_text\",\"text\":\"brand support\",\"text_spacing\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"text_color\":\"globals\\/colors?id=text\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22c96757\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d88ed43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15c0acf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leadership Team\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2151f9cc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"79f1d453\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14bb652a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7271e60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51f0f9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jamie Foxx\",\"description_text\":\"CEO influence\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2e465346\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5759929\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2efd7090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Miley Cyrus\",\"description_text\":\"Chief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"39a3ae5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62095b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":27,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7adfe626\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jonathan \",\"description_text\":\"SVP, Head of Sales\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"121dc9a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e796c8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d3c55ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6bcfa32a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Max Powers\",\"description_text\":\"\\nChief Customer Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7e209004\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"405b1e74\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5de9c738\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Roman Kazmin\",\"description_text\":\"\\nGeneral Manager\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"43db4ca9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b7dce98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-8.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b4ea0e7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Bethany Ellis\",\"description_text\":\"\\nChief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ea8b7d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_overlay_position_mobile\":\"center center\",\"background_overlay_repeat_tablet\":\"repeat-y\",\"background_overlay_repeat_mobile\":\"repeat-y\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76519440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"471ec14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34e1f1e8\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"align_tablet\":\"center\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"3a23b7a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"bottom\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a70973c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5bfe26ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3649a632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"43b5b751\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ffd63b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6abf3b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"208c0dcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"33555df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66017432\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65b33272\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54b12c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c1bf92d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#9ECAD7\",\"background_image\":{\"id\":78,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon013.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70efd49b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"CAN WE HELP \",\"description_text\":\"Looking for product support\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"2dac5eb2\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3f716155\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#929CFF\",\"background_image\":{\"id\":79,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon012.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"242bba3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Find Influencer\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=accent\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5b500e77\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1a452df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FF9C93\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon014.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1503adec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"creator management\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"60298fd3\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(480,113,'_elementor_page_assets','a:0:{}'),(481,114,'_elementor_edit_mode','builder'),(482,114,'_elementor_template_type','page'),(483,114,'_elementor_version','3.7.6'),(484,114,'_elementor_data','[{\"id\":\"491b4552\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52547d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7eee68db\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dfa189c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b4bfeb4\",\"elType\":\"widget\",\"settings\":{\"title\":\" influence Page\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39473cf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b0b294\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"43a1f718\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47b1971b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b182840\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"184a5b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f38e6ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"222e72ac\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"16ed0df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"bottom\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36a9e149\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45601e03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"61e5b50d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"768fb872\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5af94281\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"648c15f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"6190df95\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"19d56df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34b0385f\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"232cc3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"544797ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"493e5622\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5798c551\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16ff2527\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"73d92c59\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ddc9a0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69b94f42\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"48388702\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"397e1fab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467c7d86\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6984de43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7799c5cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"116b34f5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16800333\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"472e0538\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2d50828e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28b4ab08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"8c3f432\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2bb2406b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3188ac41\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37613952\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67adf232\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39ca5c36\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45f3868f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cdd2f38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"795ddb1f\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48c4c202\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"770baf42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e00a44a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4690752e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c30e85b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"561a77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5feb38ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d70a28a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b07d343\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1404598a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"469cbc21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ec165df\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"492f1caa\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b600eac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4e7e69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2cb02e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18ab89dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16858cdc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4afea3e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fb2c206\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bf0e534\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65e883bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(485,114,'_elementor_page_assets','a:0:{}'),(486,115,'_elementor_edit_mode','builder'),(487,115,'_elementor_template_type','page'),(488,115,'_elementor_version','3.7.6'),(489,115,'_elementor_data','[{\"id\":\"6a31f13c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68165287\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c3fd9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d5b8a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"625ca0b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Work\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d4ed7e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4574a48d\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6cdeed55\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"102341d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"651ce3eb\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3046a001\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67cc6fb8\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65f97eab\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76674e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3503af39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"62e7e340\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3d226dd4\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4414da40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"317e3f18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28833ca7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f480c57\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d4261e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b3cad0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b9595ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e91e77f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71f0ced0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2c88d9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b162ba4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5643c662\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3c46ea52\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5aa37c22\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b6aaaa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f064e97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6c83f8be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c7d7737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c508bc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"29c61813\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"462756de\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c1ef180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f70ecf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"795e11f8\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f1de342\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"715c8a91\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"711e32d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a96d5b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"528baa5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757465bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38a6cc21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"2f025960\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"eb382e6\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"474ed7ba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ff9fb10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c55a2a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9306855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#9ECAD7\",\"background_image\":{\"id\":78,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon013.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"112cc8df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"CAN WE HELP \",\"description_text\":\"Looking for product support\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6dc84b42\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1a731f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#929CFF\",\"background_image\":{\"id\":79,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon012.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"321dedc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Find Influencer\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=accent\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6389cdb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5195525e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FF9C93\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon014.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d599e1e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"creator management\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7c88c2bc\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(490,115,'_elementor_page_assets','a:0:{}'),(491,116,'_elementor_edit_mode','builder'),(492,116,'_elementor_template_type','section'),(493,116,'_elementor_version','3.7.6'),(494,116,'_elementor_data','[{\"id\":\"25c11bd1\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"height\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"background_position\":\"bottom left\",\"background_position_mobile\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_overlay_position_tablet\":\"center center\",\"background_overlay_repeat_tablet\":\"repeat-y\",\"background_overlay_repeat_mobile\":\"repeat-y\",\"background_overlay_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":97,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"308af89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f736c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d10dff7\",\"elType\":\"widget\",\"settings\":{\"title\":\"page not found\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe90134\",\"elType\":\"widget\",\"settings\":{\"text\":\"Back to homepage\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(495,116,'_elementor_page_assets','a:0:{}'),(496,117,'_elementor_edit_mode','builder'),(497,117,'_elementor_template_type','page'),(498,117,'_elementor_version','3.7.6'),(499,117,'_elementor_data','[{\"id\":\"700ff522\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17fd7144\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e3d23ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2de4725e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3aeefa37\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115ca159\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"785e9363\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"3eabf9f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"138a6d4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6665a429\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"93887d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fbdcc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38f33155\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4565ba2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7885ed9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8685eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#9ECAD7\",\"background_image\":{\"id\":78,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon013.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1779b986\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"CAN WE HELP \",\"description_text\":\"Looking for product support\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5a16194e\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"657ba979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#929CFF\",\"background_image\":{\"id\":79,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon012.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43910dce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Find Influencer\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=accent\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"48267b06\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3985b08b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FF9C93\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon014.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f472fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"creator management\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"73a62e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(500,117,'_elementor_page_assets','a:0:{}'),(501,118,'_elementor_edit_mode','builder'),(502,118,'_elementor_template_type','page'),(503,118,'_elementor_version','3.7.6'),(504,118,'_elementor_data','[{\"id\":\"5f5cde81\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ec8d60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2de08ae9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ec37a04\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31902fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\t\\nPricing\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dd78db\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b4bd3af\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"53f1d154\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe4d67b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cffba60\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.22,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25616f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5adb80e5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b69620c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a822c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencers ad posts and stories monitoring\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2193f977\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ff2cee8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27b9a41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"474fc663\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":91,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon010.png\"},\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7af6bf52\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66d2c927\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"24401ce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"4a8f13d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"73659e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"179ae27c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"150\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bf2fdd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"7fd725b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"39dac651\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"21c7c195\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6382ece8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible pricing for every business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ffdcdaa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upgrade, downgrade or cancel at any time\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"303d507a\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"644871c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Start free trial\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"40cf726f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4487cbc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"24fd6a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3c19ddb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(505,118,'_elementor_page_assets','a:0:{}'),(506,119,'_elementor_edit_mode','builder'),(507,119,'_elementor_template_type','page'),(508,119,'_elementor_version','3.7.6'),(509,119,'_elementor_data','[{\"id\":\"55a2034a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"603ba392\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2669f1f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e187960\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ab95a09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17b70ce7\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31813bf4\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"69015c4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d4ef5a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af5cfd7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"638eb3e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8e0a3ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55876d55\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f601d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"283243e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4da419af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c301f57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b9a9997\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d29e4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad6214d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f496e2b\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"354ff95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50485c16\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7f02a0fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42b6c8cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"274469c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67ba6ae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4cfcf3e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5615cc0e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"438a2345\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5de523ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7a4481fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3059a78e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22365dd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5119f667\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b9ab774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7943be4f\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3191a1d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a331915\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"45ff1951\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fd8281d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1676bfbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6599aaca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42f2d0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e691ba3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(510,119,'_elementor_page_assets','a:0:{}'),(511,120,'_elementor_edit_mode','builder'),(512,120,'_elementor_template_type','page'),(513,120,'_elementor_version','3.7.6'),(514,120,'_elementor_data','[{\"id\":\"61240d9d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"789800fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12265a40\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50857ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e802850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42d0ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5145b96e\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"15ce7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"304dc7c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15de9b4e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"342fabbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44b1c301\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leadership Team\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77432c03\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1eee4263\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1dddfbeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60167496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5e15f904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jamie Foxx\",\"description_text\":\"CEO influence\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3ddf145e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"110c5f6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71a2bcce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Miley Cyrus\",\"description_text\":\"Chief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16f8657d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75d15ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":27,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71ef294c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jonathan \",\"description_text\":\"SVP, Head of Sales\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78ab70ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60e6f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15e3d14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b15c63b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Max Powers\",\"description_text\":\"\\nChief Customer Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"74da36f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33f32939\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d747bb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Roman Kazmin\",\"description_text\":\"\\nGeneral Manager\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7157c969\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68841edd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-8.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d5d5fea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Bethany Ellis\",\"description_text\":\"\\nChief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(515,120,'_elementor_page_assets','a:0:{}'),(516,121,'_elementor_edit_mode','builder'),(517,121,'_elementor_template_type','page'),(518,121,'_elementor_version','3.7.6'),(519,121,'_elementor_data','[{\"id\":\"343bc753\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"642580fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10db2ac8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fc35d49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d750ce6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29b93638\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24e2d9e0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"1af7637\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46fa09cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22e46354\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"204812b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f56e106\",\"elType\":\"widget\",\"settings\":{\"title\":\"Last News\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c69fc05\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(520,121,'_elementor_page_assets','a:0:{}'),(521,122,'_elementor_edit_mode','builder'),(522,122,'_elementor_template_type','section'),(523,122,'_elementor_version','3.7.6'),(524,122,'_elementor_data','[{\"id\":\"7aa241ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6484961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b07ddfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5758a78e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"759d16ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single Post \",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"590dcd02\",\"elType\":\"widget\",\"settings\":{\"title\":\"A complete guide on Youtube marketing strategies\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d1c68bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"4d29ddfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a9f5a8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e9bc818\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":101,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/BG-06.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36a8432c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ee1f88f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"28 may 2022\",\"selected_icon\":{\"value\":\"icon icon-calendar-full\",\"library\":\"ekiticons\"},\"_id\":\"dcd53c3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=d593777\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3bc9e867\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing, elit accumsan convallis nisl class facilisi, augue cubilia tortor arcu volutpat. Senectus sollicitudin penatibus vehicula mauris sagittis aenean aliquam, vel nullam dui placerat inceptos mattis, magna libero suscipit eleifend vitae est. Suspendisse odio a ornare libero senectus mollis curae, enim lacus pretium at faucibus phasellus.<\\/p><p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget pharetra, fusce ornare parturient tempus leo rutrum id eu. Sagittis vivamus scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis luctus facilisi, eleifend lobortis ut porttitor mus nostra eu ornare, curae lacus etiam tellus pellentesque magnis.<\\/p>\",\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74a67a5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4339f14b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1eaa2841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":100,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon011.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"41bb76c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"656f82af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lending a Helping Paw\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d5a731\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget\\u00a0 scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis luctus facilisi, eleifend lobortis ut porttitor mus nostra eu ornare, curae lacus etiam tellus pellentesque magnis.<\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ad3eb9b\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8717e6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing, elit accumsan convallis nisl class facilisi, augue cubilia tortor arcu volutpat. Senectus sollicitudin penatibus vehicula mauris sagittis aenean aliquam, vel nullam dui placerat inceptos mattis, magna libero suscipit eleifend vitae est. Suspendisse odio a ornare libero senectus mollis curae, enim lacus pretium at faucibus phasellus.<\\/p><p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget pharetra, fusce ornare parturient tempus leo rutrum id eu. Sagittis vivamus scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis\\u00a0<\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ad3eb9b\",\"text_color\":\"globals\\/colors?id=text\"},\"text_columns\":\"2\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_columns_mobile\":\"1\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dcf4b9c\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":21,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-5.jpg\"},{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},{\"id\":77,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-8.jpg\"},{\"id\":33,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-9.jpg\"}],\"thumbnail_size\":\"full\",\"gallery_columns\":\"6\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=ba131b5\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"7d134d55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mauris varius vitae tristique ridiculus tempor ullamcorper semper mus neque ad magnis, conubia accumsan quisque interdum penatibus sociis scelerisque ac fermentum montes consequat dictumst, tincidunt inceptos leo cubilia curae mi aptent porttitor libero imperdiet. Netus facilisis suspendisse luctus suscipit nunc posuere in, diam tellus pretium fringilla sagittis magnis, orci vitae vivamus sodales sociis facilisi.<\\/p>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ad3eb9b\",\"text_color\":\"globals\\/colors?id=text\"},\"text_columns\":\"1\",\"_margin\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b3cbf07\",\"elType\":\"widget\",\"settings\":{\"style\":\"dashed\",\"text\":\"Divider\",\"__globals__\":{\"color\":\"globals\\/colors?id=9973e78\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6cf414b8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7A7A7A4F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"607f3ad4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a3596a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share :\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"63710d50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.966000000000001,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f7cf45c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7A7A7A4F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2383177e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"596507f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"195800e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"594bc27b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Location\",\"description_text\":\"Jl Soekarno-hatta 03\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"description_typography_typography\":\"globals\\/typography?id=41b9d89\",\"title_color\":\"globals\\/colors?id=primary\",\"description_color\":\"globals\\/colors?id=primary\",\"_background_color\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#03031B\",\"title_color\":\"#03031B\",\"description_color\":\"#03031B\",\"_background_color\":\"#FDE02C6B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2ca12559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"021-25400-8900\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"description_typography_typography\":\"globals\\/typography?id=41b9d89\",\"title_color\":\"globals\\/colors?id=primary\",\"description_color\":\"globals\\/colors?id=primary\",\"_background_color\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#03031B\",\"title_color\":\"#03031B\",\"description_color\":\"#03031B\",\"_background_color\":\"#FDE02C6B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"519497c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Location\",\"description_text\":\"petcute@mail.com\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=text\",\"description_typography_typography\":\"globals\\/typography?id=41b9d89\",\"title_color\":\"globals\\/colors?id=primary\",\"description_color\":\"globals\\/colors?id=primary\",\"_background_color\":\"\"},\"content_vertical_alignment\":\"middle\",\"_padding\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#03031B\",\"title_color\":\"#03031B\",\"description_color\":\"#03031B\",\"_background_color\":\"#FDE02C6B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a77b3a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7A7A7A4F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"679c5972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"453273ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Post\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dbacab5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7A7A7A4F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12650ac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6deb9c6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=d3747eb\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f740d81\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"080d4ff\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4ab6cc1\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"b18cd1e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"41f72c1\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=7679034\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=7679034\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(525,122,'_elementor_page_assets','a:0:{}'),(526,123,'_elementor_edit_mode','builder'),(527,123,'_elementor_template_type','page'),(528,123,'_elementor_version','3.7.6'),(529,123,'_elementor_data','[{\"id\":\"718e901d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e64c49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-16.png\",\"id\":1435,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b123b36\",\"elType\":\"section\",\"settings\":{\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c28bdd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31b3524f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"vh\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"41a7eea1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Shoutcart Support\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d593777\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ff089b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"747f1bad\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"64c36af8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":10,\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5c7038\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"322a083e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f7dfe9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"HELLO ! HOW CAN WE HELP ?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22407e82\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4922a2a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c5edf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3357289d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"6abe094a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"14281f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e9404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a9fd33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"54d3035a\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"565630f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a44a208\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Social Media\",\"color\":\"#B3B3B3\",\"text_color\":\"#181B31\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_spacing\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\",\"text_color\":\"globals\\/colors?id=primary\",\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"587a5e2a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"ee4a3f8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"946f9c1\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"2d0caaa\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"b971598\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"5110965\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=349f2af\",\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=7679034\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"522bc997\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":438,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":91,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(530,123,'_elementor_page_assets','a:0:{}'),(618,139,'_edit_last','1'),(619,139,'_edit_lock','1677587746:1'),(620,139,'_wp_page_template','default'),(621,139,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(622,139,'ehf_target_exclude_locations','a:0:{}'),(623,139,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(624,139,'ehf_template_type','type_footer'),(625,139,'_elementor_edit_mode','builder'),(626,139,'_elementor_template_type','wp-post'),(627,139,'_elementor_version','3.10.2'),(629,141,'_wp_page_template','default'),(630,141,'_elementor_edit_mode','builder'),(631,141,'_elementor_template_type','wp-post'),(632,141,'_elementor_version','3.7.6'),(634,142,'_wp_page_template','default'),(635,142,'_elementor_edit_mode','builder'),(636,142,'_elementor_template_type','wp-post'),(637,142,'_elementor_version','3.7.6'),(639,139,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.02,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.98,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a92023 We Influence. Powered by WhatTheHell?\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(640,143,'_wp_page_template','default'),(641,143,'_elementor_edit_mode','builder'),(642,143,'_elementor_template_type','wp-post'),(643,143,'_elementor_version','3.7.6'),(645,143,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(646,139,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(650,144,'_edit_lock','1677669741:1'),(651,144,'_wp_page_template','elementor_header_footer'),(652,144,'_elementor_edit_mode','builder'),(653,144,'_elementor_template_type','wp-page'),(654,144,'_elementor_version','3.10.2'),(656,146,'_wp_page_template','elementor_header_footer'),(657,146,'_elementor_edit_mode','builder'),(658,146,'_elementor_template_type','wp-page'),(659,146,'_elementor_version','3.7.6'),(660,147,'_wp_page_template','elementor_header_footer'),(661,147,'_elementor_edit_mode','builder'),(662,147,'_elementor_template_type','wp-page'),(663,147,'_elementor_version','3.7.6'),(664,144,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#904EFB\",\"hover_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\",\"form_submit_button_bg_color_normal\":\"#904EFB\",\"form_submit_button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"form_submit_button_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"form_submit_button_bg_color_hover\":\"#FFF1CE\",\"form_submit_button_text_color_hover\":\"#000000\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(665,148,'_wp_page_template','elementor_header_footer'),(666,148,'_elementor_edit_mode','builder'),(667,148,'_elementor_template_type','wp-page'),(668,148,'_elementor_version','3.7.6'),(669,148,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(670,144,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(744,161,'_edit_lock','1663620856:1'),(745,161,'_wp_page_template','elementor_header_footer'),(746,161,'_elementor_edit_mode','builder'),(747,161,'_elementor_template_type','wp-page'),(748,161,'_elementor_version','3.7.6'),(749,163,'_wp_page_template','elementor_header_footer'),(750,163,'_elementor_edit_mode','builder'),(751,163,'_elementor_template_type','wp-page'),(752,163,'_elementor_version','3.7.6'),(753,164,'_wp_page_template','elementor_header_footer'),(754,164,'_elementor_edit_mode','builder'),(755,164,'_elementor_template_type','wp-page'),(756,164,'_elementor_version','3.7.6'),(757,161,'_elementor_data','[{\"id\":\"407615c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32592f04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-16.png\",\"id\":1435,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7fb466d4\",\"elType\":\"section\",\"settings\":{\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79c034b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cfc75f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"vh\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"15734d30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Shoutcart Support\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d593777\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a55133\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bf8c1c9\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5c258058\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":10,\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ba4d965\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b1040a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"45fefc53\",\"elType\":\"widget\",\"settings\":{\"title\":\"HELLO ! HOW CAN WE HELP ?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15795874\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2f514351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b9ec85\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true},{\"id\":\"180a9d2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true},{\"id\":\"3198d369\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true},{\"id\":\"19715e9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3579855a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"26c7ceb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"127874d6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"74b67bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"53406954\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Social Media\",\"color\":\"#B3B3B3\",\"text_color\":\"#181B31\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_spacing\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\",\"text_color\":\"globals\\/colors?id=primary\",\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4c53e7f4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"ee4a3f8\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"946f9c1\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"2d0caaa\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"b971598\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"5110965\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=349f2af\",\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"23bcd433\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":438,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":91,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(758,165,'_wp_page_template','elementor_header_footer'),(759,165,'_elementor_edit_mode','builder'),(760,165,'_elementor_template_type','wp-page'),(761,165,'_elementor_version','3.7.6'),(762,165,'_elementor_data','[{\"id\":\"407615c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32592f04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-16.png\",\"id\":1435,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7fb466d4\",\"elType\":\"section\",\"settings\":{\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79c034b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cfc75f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"vh\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"15734d30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Shoutcart Support\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d593777\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a55133\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bf8c1c9\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5c258058\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":10,\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ba4d965\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b1040a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"45fefc53\",\"elType\":\"widget\",\"settings\":{\"title\":\"HELLO ! HOW CAN WE HELP ?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15795874\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2f514351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b9ec85\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true},{\"id\":\"180a9d2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true},{\"id\":\"3198d369\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true},{\"id\":\"19715e9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3579855a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"26c7ceb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"127874d6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"74b67bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"53406954\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Social Media\",\"color\":\"#B3B3B3\",\"text_color\":\"#181B31\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_spacing\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\",\"text_color\":\"globals\\/colors?id=primary\",\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4c53e7f4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"ee4a3f8\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"946f9c1\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"2d0caaa\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"b971598\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"5110965\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=349f2af\",\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"23bcd433\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":438,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":91,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(763,161,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(765,166,'_menu_item_type','post_type'),(766,166,'_menu_item_menu_item_parent','0'),(767,166,'_menu_item_object_id','161'),(768,166,'_menu_item_object','page'),(769,166,'_menu_item_target',''),(770,166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(771,166,'_menu_item_xfn',''),(772,166,'_menu_item_url',''),(779,166,'_wp_old_date','2022-09-19'),(815,174,'_edit_lock','1663655821:1'),(816,175,'_menu_item_type','post_type'),(817,175,'_menu_item_menu_item_parent','0'),(818,175,'_menu_item_object_id','174'),(819,175,'_menu_item_object','page'),(820,175,'_menu_item_target',''),(821,175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(822,175,'_menu_item_xfn',''),(823,175,'_menu_item_url',''),(824,174,'_wp_page_template','elementor_header_footer'),(825,174,'_elementor_edit_mode','builder'),(826,174,'_elementor_template_type','wp-page'),(827,174,'_elementor_version','3.7.6'),(828,177,'_wp_page_template','elementor_header_footer'),(829,177,'_elementor_edit_mode','builder'),(830,177,'_elementor_template_type','wp-page'),(831,177,'_elementor_version','3.7.6'),(832,178,'_wp_page_template','elementor_header_footer'),(833,178,'_elementor_edit_mode','builder'),(834,178,'_elementor_template_type','wp-page'),(835,178,'_elementor_version','3.7.6'),(836,174,'_elementor_data','[{\"id\":\"12cd2245\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e12d9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1afd086b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ee38e59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34b33d70\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18982a0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a660221\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"324aafdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70fadafc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ec08ef0\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"618771c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7bb10093\",\"elType\":\"widget\",\"settings\":{\"title\":\"Last News\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca21a78\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(837,179,'_wp_page_template','elementor_header_footer'),(838,179,'_elementor_edit_mode','builder'),(839,179,'_elementor_template_type','wp-page'),(840,179,'_elementor_version','3.7.6'),(841,179,'_elementor_data','[{\"id\":\"12cd2245\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e12d9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1afd086b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ee38e59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34b33d70\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18982a0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a660221\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"324aafdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70fadafc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ec08ef0\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"618771c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7bb10093\",\"elType\":\"widget\",\"settings\":{\"title\":\"Last News\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca21a78\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(842,174,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(892,187,'_wp_page_template','elementor_header_footer'),(893,187,'_elementor_edit_mode','builder'),(894,187,'_elementor_template_type','wp-page'),(895,187,'_elementor_version','3.7.6');
INSERT INTO `wp_postmeta` VALUES (896,187,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(897,187,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(899,188,'_wp_page_template','elementor_header_footer'),(900,188,'_elementor_edit_mode','builder'),(901,188,'_elementor_template_type','wp-page'),(902,188,'_elementor_version','3.7.6'),(903,188,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(904,188,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(906,189,'_wp_page_template','elementor_header_footer'),(907,189,'_elementor_edit_mode','builder'),(908,189,'_elementor_template_type','wp-page'),(909,189,'_elementor_version','3.7.6'),(910,189,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(911,189,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(913,190,'_wp_page_template','elementor_header_footer'),(914,190,'_elementor_edit_mode','builder'),(915,190,'_elementor_template_type','wp-page'),(916,190,'_elementor_version','3.7.7'),(917,190,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(918,190,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(919,191,'_wp_page_template','elementor_header_footer'),(920,191,'_elementor_edit_mode','builder'),(921,191,'_elementor_template_type','wp-page'),(922,191,'_elementor_version','3.7.7'),(923,191,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(924,191,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(925,192,'_wp_page_template','elementor_header_footer'),(926,192,'_elementor_edit_mode','builder'),(927,192,'_elementor_template_type','wp-page'),(928,192,'_elementor_version','3.7.7'),(929,192,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(930,192,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(931,193,'_wp_page_template','elementor_header_footer'),(932,193,'_elementor_edit_mode','builder'),(933,193,'_elementor_template_type','wp-page'),(934,193,'_elementor_version','3.7.7'),(935,193,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(936,193,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(937,194,'_wp_page_template','elementor_header_footer'),(938,194,'_elementor_edit_mode','builder'),(939,194,'_elementor_template_type','wp-page'),(940,194,'_elementor_version','3.7.7'),(941,194,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(942,194,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(943,195,'_wp_page_template','elementor_header_footer'),(944,195,'_elementor_edit_mode','builder'),(945,195,'_elementor_template_type','wp-page'),(946,195,'_elementor_version','3.7.7'),(947,195,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":991,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(948,195,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(949,196,'_wp_page_template','elementor_header_footer'),(950,196,'_elementor_edit_mode','builder'),(951,196,'_elementor_template_type','wp-page'),(952,196,'_elementor_version','3.7.7'),(953,196,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":991,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(954,196,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(955,197,'_wp_page_template','elementor_header_footer'),(956,197,'_elementor_edit_mode','builder'),(957,197,'_elementor_template_type','wp-page'),(958,197,'_elementor_version','3.7.7'),(959,197,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":991,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(960,197,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(961,198,'_wp_page_template','elementor_header_footer'),(962,198,'_elementor_edit_mode','builder'),(963,198,'_elementor_template_type','wp-page'),(964,198,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (965,198,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(966,198,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(967,199,'_wp_page_template','elementor_header_footer'),(968,199,'_elementor_edit_mode','builder'),(969,199,'_elementor_template_type','wp-page'),(970,199,'_elementor_version','3.7.7'),(971,199,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(972,199,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(973,200,'_wp_page_template','elementor_header_footer'),(974,200,'_elementor_edit_mode','builder'),(975,200,'_elementor_template_type','wp-page'),(976,200,'_elementor_version','3.7.7'),(977,200,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(978,200,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(979,201,'_wp_page_template','elementor_header_footer'),(980,201,'_elementor_edit_mode','builder'),(981,201,'_elementor_template_type','wp-page'),(982,201,'_elementor_version','3.7.7'),(983,201,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(984,201,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(985,202,'_wp_page_template','elementor_header_footer'),(986,202,'_elementor_edit_mode','builder'),(987,202,'_elementor_template_type','wp-page'),(988,202,'_elementor_version','3.7.7'),(989,202,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(990,202,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(991,203,'_wp_page_template','elementor_header_footer'),(992,203,'_elementor_edit_mode','builder'),(993,203,'_elementor_template_type','wp-page'),(994,203,'_elementor_version','3.7.7'),(995,203,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(996,203,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(997,204,'_wp_page_template','elementor_header_footer'),(998,204,'_elementor_edit_mode','builder'),(999,204,'_elementor_template_type','wp-page'),(1000,204,'_elementor_version','3.7.7'),(1001,204,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1002,204,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1003,205,'_wp_page_template','elementor_header_footer'),(1004,205,'_elementor_edit_mode','builder'),(1005,205,'_elementor_template_type','wp-page'),(1006,205,'_elementor_version','3.7.7'),(1007,205,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1008,205,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1009,206,'_wp_page_template','elementor_header_footer'),(1010,206,'_elementor_edit_mode','builder'),(1011,206,'_elementor_template_type','wp-page'),(1012,206,'_elementor_version','3.7.7'),(1013,206,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1014,206,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1015,207,'_wp_page_template','elementor_header_footer'),(1016,207,'_elementor_edit_mode','builder'),(1017,207,'_elementor_template_type','wp-page'),(1018,207,'_elementor_version','3.7.7'),(1019,207,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1020,207,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1021,208,'_wp_page_template','elementor_header_footer'),(1022,208,'_elementor_edit_mode','builder'),(1023,208,'_elementor_template_type','wp-page'),(1024,208,'_elementor_version','3.7.7'),(1025,208,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1026,208,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1027,209,'_wp_page_template','elementor_header_footer'),(1028,209,'_elementor_edit_mode','builder'),(1029,209,'_elementor_template_type','wp-page'),(1030,209,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1031,209,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":997,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1032,209,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1033,210,'_wp_page_template','elementor_header_footer'),(1034,210,'_elementor_edit_mode','builder'),(1035,210,'_elementor_template_type','wp-page'),(1036,210,'_elementor_version','3.7.7'),(1037,210,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1038,210,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1039,211,'_wp_page_template','elementor_header_footer'),(1040,211,'_elementor_edit_mode','builder'),(1041,211,'_elementor_template_type','wp-page'),(1042,211,'_elementor_version','3.7.7'),(1043,211,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1044,211,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1045,212,'_wp_page_template','elementor_header_footer'),(1046,212,'_elementor_edit_mode','builder'),(1047,212,'_elementor_template_type','wp-page'),(1048,212,'_elementor_version','3.7.7'),(1049,212,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1050,212,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1051,213,'_wp_page_template','elementor_header_footer'),(1052,213,'_elementor_edit_mode','builder'),(1053,213,'_elementor_template_type','wp-page'),(1054,213,'_elementor_version','3.7.7'),(1055,213,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1056,213,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1057,214,'_wp_page_template','elementor_header_footer'),(1058,214,'_elementor_edit_mode','builder'),(1059,214,'_elementor_template_type','wp-page'),(1060,214,'_elementor_version','3.7.7'),(1061,214,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1062,214,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1063,215,'_wp_page_template','elementor_header_footer'),(1064,215,'_elementor_edit_mode','builder'),(1065,215,'_elementor_template_type','wp-page'),(1066,215,'_elementor_version','3.7.7'),(1067,215,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1068,215,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1069,216,'_wp_page_template','elementor_header_footer'),(1070,216,'_elementor_edit_mode','builder'),(1071,216,'_elementor_template_type','wp-page'),(1072,216,'_elementor_version','3.7.7'),(1073,216,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":873,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1074,216,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1075,217,'_wp_page_template','elementor_header_footer'),(1076,217,'_elementor_edit_mode','builder'),(1077,217,'_elementor_template_type','wp-page'),(1078,217,'_elementor_version','3.7.7'),(1079,217,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":873,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1080,217,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1081,218,'_wp_page_template','elementor_header_footer'),(1082,218,'_elementor_edit_mode','builder'),(1083,218,'_elementor_template_type','wp-page'),(1084,218,'_elementor_version','3.7.7'),(1085,218,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":873,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1086,218,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1087,219,'_wp_page_template','elementor_header_footer'),(1088,219,'_elementor_edit_mode','builder'),(1089,219,'_elementor_template_type','wp-page'),(1090,219,'_elementor_version','3.7.7'),(1091,219,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":873,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1092,219,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1093,220,'_wp_page_template','elementor_header_footer'),(1094,220,'_elementor_edit_mode','builder'),(1095,220,'_elementor_template_type','wp-page'),(1096,220,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1097,220,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":873,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1098,220,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1099,221,'_wp_page_template','elementor_header_footer'),(1100,221,'_elementor_edit_mode','builder'),(1101,221,'_elementor_template_type','wp-page'),(1102,221,'_elementor_version','3.7.7'),(1103,221,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":873,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1104,221,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1105,222,'_wp_page_template','elementor_header_footer'),(1106,222,'_elementor_edit_mode','builder'),(1107,222,'_elementor_template_type','wp-page'),(1108,222,'_elementor_version','3.7.7'),(1109,222,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1110,222,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1111,223,'_wp_page_template','elementor_header_footer'),(1112,223,'_elementor_edit_mode','builder'),(1113,223,'_elementor_template_type','wp-page'),(1114,223,'_elementor_version','3.7.7'),(1115,223,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1116,223,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1117,224,'_wp_page_template','elementor_header_footer'),(1118,224,'_elementor_edit_mode','builder'),(1119,224,'_elementor_template_type','wp-page'),(1120,224,'_elementor_version','3.7.7'),(1121,224,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1122,224,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1123,225,'_wp_page_template','elementor_header_footer'),(1124,225,'_elementor_edit_mode','builder'),(1125,225,'_elementor_template_type','wp-page'),(1126,225,'_elementor_version','3.7.7'),(1127,225,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1128,225,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1129,226,'_wp_page_template','elementor_header_footer'),(1130,226,'_elementor_edit_mode','builder'),(1131,226,'_elementor_template_type','wp-page'),(1132,226,'_elementor_version','3.7.7'),(1133,226,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1134,226,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1135,227,'_wp_page_template','elementor_header_footer'),(1136,227,'_elementor_edit_mode','builder'),(1137,227,'_elementor_template_type','wp-page'),(1138,227,'_elementor_version','3.7.7'),(1139,227,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1140,227,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1141,228,'_wp_page_template','elementor_header_footer'),(1142,228,'_elementor_edit_mode','builder'),(1143,228,'_elementor_template_type','wp-page'),(1144,228,'_elementor_version','3.7.7'),(1145,228,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1146,228,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1147,229,'_wp_page_template','elementor_header_footer'),(1148,229,'_elementor_edit_mode','builder'),(1149,229,'_elementor_template_type','wp-page'),(1150,229,'_elementor_version','3.7.7'),(1151,229,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1152,229,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1153,230,'_wp_page_template','elementor_header_footer'),(1154,230,'_elementor_edit_mode','builder'),(1155,230,'_elementor_template_type','wp-page'),(1156,230,'_elementor_version','3.7.7'),(1157,230,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1158,230,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1159,231,'_wp_page_template','elementor_header_footer'),(1160,231,'_elementor_edit_mode','builder'),(1161,231,'_elementor_template_type','wp-page'),(1162,231,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1163,231,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1164,231,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1165,232,'_wp_page_template','elementor_header_footer'),(1166,232,'_elementor_edit_mode','builder'),(1167,232,'_elementor_template_type','wp-page'),(1168,232,'_elementor_version','3.7.7'),(1169,232,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1170,232,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1171,233,'_wp_page_template','elementor_header_footer'),(1172,233,'_elementor_edit_mode','builder'),(1173,233,'_elementor_template_type','wp-page'),(1174,233,'_elementor_version','3.7.7'),(1175,233,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1176,233,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1177,234,'_wp_page_template','elementor_header_footer'),(1178,234,'_elementor_edit_mode','builder'),(1179,234,'_elementor_template_type','wp-page'),(1180,234,'_elementor_version','3.7.7'),(1181,234,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1182,234,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1183,235,'_wp_page_template','elementor_header_footer'),(1184,235,'_elementor_edit_mode','builder'),(1185,235,'_elementor_template_type','wp-page'),(1186,235,'_elementor_version','3.7.7'),(1187,235,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1188,235,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1189,236,'_wp_page_template','elementor_header_footer'),(1190,236,'_elementor_edit_mode','builder'),(1191,236,'_elementor_template_type','wp-page'),(1192,236,'_elementor_version','3.7.7'),(1193,236,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1194,236,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1195,237,'_wp_page_template','elementor_header_footer'),(1196,237,'_elementor_edit_mode','builder'),(1197,237,'_elementor_template_type','wp-page'),(1198,237,'_elementor_version','3.7.7'),(1199,237,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1200,237,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1201,238,'_wp_page_template','elementor_header_footer'),(1202,238,'_elementor_edit_mode','builder'),(1203,238,'_elementor_template_type','wp-page'),(1204,238,'_elementor_version','3.7.7'),(1205,238,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1206,238,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1207,239,'_wp_page_template','elementor_header_footer'),(1208,239,'_elementor_edit_mode','builder'),(1209,239,'_elementor_template_type','wp-page'),(1210,239,'_elementor_version','3.7.7'),(1211,239,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1212,239,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1213,240,'_wp_page_template','elementor_header_footer'),(1214,240,'_elementor_edit_mode','builder'),(1215,240,'_elementor_template_type','wp-page'),(1216,240,'_elementor_version','3.7.7'),(1217,240,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1218,240,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1219,241,'_wp_page_template','elementor_header_footer'),(1220,241,'_elementor_edit_mode','builder'),(1221,241,'_elementor_template_type','wp-page'),(1222,241,'_elementor_version','3.7.7'),(1223,241,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1224,241,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1225,242,'_wp_page_template','elementor_header_footer'),(1226,242,'_elementor_edit_mode','builder'),(1227,242,'_elementor_template_type','wp-page'),(1228,242,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1229,242,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1230,242,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1231,243,'_wp_page_template','elementor_header_footer'),(1232,243,'_elementor_edit_mode','builder'),(1233,243,'_elementor_template_type','wp-page'),(1234,243,'_elementor_version','3.7.7'),(1235,243,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1236,243,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1237,244,'_wp_page_template','elementor_header_footer'),(1238,244,'_elementor_edit_mode','builder'),(1239,244,'_elementor_template_type','wp-page'),(1240,244,'_elementor_version','3.7.7'),(1241,244,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1242,244,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1243,245,'_wp_page_template','elementor_header_footer'),(1244,245,'_elementor_edit_mode','builder'),(1245,245,'_elementor_template_type','wp-page'),(1246,245,'_elementor_version','3.7.7'),(1247,245,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1248,245,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1249,246,'_wp_page_template','elementor_header_footer'),(1250,246,'_elementor_edit_mode','builder'),(1251,246,'_elementor_template_type','wp-page'),(1252,246,'_elementor_version','3.7.7'),(1253,246,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1254,246,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1255,247,'_wp_page_template','elementor_header_footer'),(1256,247,'_elementor_edit_mode','builder'),(1257,247,'_elementor_template_type','wp-page'),(1258,247,'_elementor_version','3.7.7'),(1259,247,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1260,247,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1261,248,'_wp_page_template','elementor_header_footer'),(1262,248,'_elementor_edit_mode','builder'),(1263,248,'_elementor_template_type','wp-page'),(1264,248,'_elementor_version','3.7.7'),(1265,248,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1266,248,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1267,249,'_wp_page_template','elementor_header_footer'),(1268,249,'_elementor_edit_mode','builder'),(1269,249,'_elementor_template_type','wp-page'),(1270,249,'_elementor_version','3.7.7'),(1271,249,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1272,249,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1273,250,'_wp_page_template','elementor_header_footer'),(1274,250,'_elementor_edit_mode','builder'),(1275,250,'_elementor_template_type','wp-page'),(1276,250,'_elementor_version','3.7.7'),(1277,250,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1278,250,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1279,251,'_wp_page_template','elementor_header_footer'),(1280,251,'_elementor_edit_mode','builder'),(1281,251,'_elementor_template_type','wp-page'),(1282,251,'_elementor_version','3.7.7'),(1283,251,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1284,251,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1285,252,'_wp_page_template','elementor_header_footer'),(1286,252,'_elementor_edit_mode','builder'),(1287,252,'_elementor_template_type','wp-page'),(1288,252,'_elementor_version','3.7.7'),(1289,252,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1290,252,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1291,253,'_wp_page_template','elementor_header_footer'),(1292,253,'_elementor_edit_mode','builder'),(1293,253,'_elementor_template_type','wp-page'),(1294,253,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1295,253,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1296,253,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1297,254,'_wp_page_template','elementor_header_footer'),(1298,254,'_elementor_edit_mode','builder'),(1299,254,'_elementor_template_type','wp-page'),(1300,254,'_elementor_version','3.7.7'),(1301,254,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1302,254,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1303,255,'_wp_page_template','elementor_header_footer'),(1304,255,'_elementor_edit_mode','builder'),(1305,255,'_elementor_template_type','wp-page'),(1306,255,'_elementor_version','3.7.7'),(1307,255,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1308,255,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1309,256,'_wp_page_template','elementor_header_footer'),(1310,256,'_elementor_edit_mode','builder'),(1311,256,'_elementor_template_type','wp-page'),(1312,256,'_elementor_version','3.7.7'),(1313,256,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1314,256,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1315,257,'_wp_page_template','elementor_header_footer'),(1316,257,'_elementor_edit_mode','builder'),(1317,257,'_elementor_template_type','wp-page'),(1318,257,'_elementor_version','3.7.7'),(1319,257,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1320,257,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1321,258,'_wp_page_template','elementor_header_footer'),(1322,258,'_elementor_edit_mode','builder'),(1323,258,'_elementor_template_type','wp-page'),(1324,258,'_elementor_version','3.7.7'),(1325,258,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1326,258,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1327,259,'_wp_page_template','elementor_header_footer'),(1328,259,'_elementor_edit_mode','builder'),(1329,259,'_elementor_template_type','wp-page'),(1330,259,'_elementor_version','3.7.7'),(1331,259,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1332,259,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1333,260,'_wp_page_template','elementor_header_footer'),(1334,260,'_elementor_edit_mode','builder'),(1335,260,'_elementor_template_type','wp-page'),(1336,260,'_elementor_version','3.7.7'),(1337,260,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1338,260,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1339,261,'_wp_page_template','elementor_header_footer'),(1340,261,'_elementor_edit_mode','builder'),(1341,261,'_elementor_template_type','wp-page'),(1342,261,'_elementor_version','3.7.7'),(1343,261,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1344,261,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1345,262,'_wp_page_template','default'),(1346,262,'_elementor_edit_mode','builder'),(1347,262,'_elementor_template_type','wp-post'),(1348,262,'_elementor_version','3.7.6'),(1349,262,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1350,262,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1352,263,'_wp_page_template','default'),(1353,263,'_elementor_edit_mode','builder'),(1354,263,'_elementor_template_type','wp-post'),(1355,263,'_elementor_version','3.7.6'),(1356,263,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1357,263,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1359,264,'_wp_page_template','default'),(1360,264,'_elementor_edit_mode','builder'),(1361,264,'_elementor_template_type','wp-post'),(1362,264,'_elementor_version','3.7.6'),(1363,264,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1364,264,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1366,265,'_wp_page_template','default'),(1367,265,'_elementor_edit_mode','builder'),(1368,265,'_elementor_template_type','wp-post'),(1369,265,'_elementor_version','3.7.7'),(1370,265,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1371,265,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1372,266,'_wp_page_template','default'),(1373,266,'_elementor_edit_mode','builder'),(1374,266,'_elementor_template_type','wp-post'),(1375,266,'_elementor_version','3.7.7'),(1376,266,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1377,266,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1378,267,'_wp_page_template','default'),(1379,267,'_elementor_edit_mode','builder'),(1380,267,'_elementor_template_type','wp-post'),(1381,267,'_elementor_version','3.7.7'),(1382,267,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1383,267,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1384,268,'_wp_page_template','default'),(1385,268,'_elementor_edit_mode','builder'),(1386,268,'_elementor_template_type','wp-post'),(1387,268,'_elementor_version','3.7.7'),(1388,268,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1389,268,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1390,269,'_wp_page_template','default'),(1391,269,'_elementor_edit_mode','builder'),(1392,269,'_elementor_template_type','wp-post'),(1393,269,'_elementor_version','3.7.7'),(1394,269,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1395,269,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1396,270,'_wp_page_template','default'),(1397,270,'_elementor_edit_mode','builder'),(1398,270,'_elementor_template_type','wp-post'),(1399,270,'_elementor_version','3.7.7'),(1400,270,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1401,270,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1404,271,'_wp_page_template','elementor_header_footer'),(1405,271,'_elementor_edit_mode','builder'),(1406,271,'_elementor_template_type','wp-page'),(1407,271,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1408,271,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1409,271,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1411,272,'_wp_page_template','elementor_header_footer'),(1412,272,'_elementor_edit_mode','builder'),(1413,272,'_elementor_template_type','wp-page'),(1414,272,'_elementor_version','3.7.7'),(1415,272,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":9800,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"22\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":860,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1416,272,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1418,273,'_wp_page_template','elementor_header_footer'),(1419,273,'_elementor_edit_mode','builder'),(1420,273,'_elementor_template_type','wp-page'),(1421,273,'_elementor_version','3.7.7'),(1422,273,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1423,273,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1448,166,'_wp_old_date','2022-09-20'),(1449,175,'_wp_old_date','2022-09-20'),(1450,277,'_menu_item_type','post_type'),(1451,277,'_menu_item_menu_item_parent','0'),(1452,277,'_menu_item_object_id','144'),(1453,277,'_menu_item_object','page'),(1454,277,'_menu_item_target',''),(1455,277,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1456,277,'_menu_item_xfn',''),(1457,277,'_menu_item_url',''),(1459,278,'_edit_lock','1663842532:1'),(1460,279,'_menu_item_type','post_type'),(1461,279,'_menu_item_menu_item_parent','0'),(1462,279,'_menu_item_object_id','278'),(1463,279,'_menu_item_object','page'),(1464,279,'_menu_item_target',''),(1465,279,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1466,279,'_menu_item_xfn',''),(1467,279,'_menu_item_url',''),(1468,278,'_elementor_edit_mode','builder'),(1469,278,'_elementor_template_type','wp-page'),(1470,278,'_elementor_version','3.7.7'),(1471,281,'_elementor_edit_mode','builder'),(1472,281,'_elementor_template_type','wp-page'),(1473,281,'_elementor_version','3.7.7'),(1474,282,'_elementor_edit_mode','builder'),(1475,282,'_elementor_template_type','wp-page'),(1476,282,'_elementor_version','3.7.7'),(1477,278,'_wp_page_template','default'),(1478,278,'_elementor_data','[{\"id\":\"112af95d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e04632a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f9314bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1d9e6864\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5470616c\",\"elType\":\"widget\",\"settings\":{\"title\":\"About influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19791fb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412f463b\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"457f9512\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56dd0c7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72cf25fd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22f0fc1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"159d4da2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380dd516\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":73,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp012.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d2ed95e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"cff5037\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2d0ed01c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cbc5b9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":74,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp014.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14ba14c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"610b3688\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5381e858\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"700631c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":75,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp013.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"455b8074\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20cae6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"37eb00d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d473958\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":76,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp015.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67e16566\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50d78a37\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56c63755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e49b977\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help Brands <br>work more efficiently \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1817b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"by connecting them to Influencers.\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ace63b4\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"353caaf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit suspendisse, etiam vulputate gravida netus parturient est imperdiet, cubilia leo aliquam magnis fames ullamcorper semper. Massa bibendum aenean aliquet sociosqu mauris dignissim curae ad, luctus at sapien metus suscipit eros convallis, quis phasellus proin habitant egestas condimentum potenti.<\\/p><p>\\u00a0<\\/p><p>Semper nascetur ultricies risus maecenas malesuada ac, metus leo pellentesque imperdiet porta cursus, arcu nisi per class lacus. Eleifend magnis sociis volutpat nullam aliquet scelerisque hendrerit hac sagittis, neque eget proin molestie lacinia erat tincidunt litora tristique nisi, pulvinar ligula lectus nisl et augue in tempor.<\\/p>\",\"text_columns\":\"2\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a26837f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ef71c75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\"},\"elements\":[{\"id\":\"68038cc5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"28fa2fcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customers\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52cbc3b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\"},\"elements\":[{\"id\":\"3a13262f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"M +\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2b2b581b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Profiles Monitored\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"39841793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\"},\"elements\":[{\"id\":\"6f44c02f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"523003e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nEmployees\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b2a5609\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"285f78a1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"29c6a6bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creators in our database\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"487b6295\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"723b70f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"38414bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45768cb9\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5849ae82\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7e9865bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7a91d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"408c5e45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"715a0593\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"277ca81\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45f4928c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2165f7dc\",\"elType\":\"widget\",\"settings\":{\"style\":\"dashed\",\"look\":\"line_text\",\"text\":\"brand support\",\"text_spacing\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cde190b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc93e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ec34535\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leadership Team\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e8f0d80\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b6cf69f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ad8d3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"53af71af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b057b25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jamie Foxx\",\"description_text\":\"CEO influence\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2c4a7ce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"167c88ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d7bdd7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Miley Cyrus\",\"description_text\":\"Chief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1d5d1400\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"4bd40c75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":27,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6bdff381\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jonathan \",\"description_text\":\"SVP, Head of Sales\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29dabd8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7870ce71\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f88ad80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"245512d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Max Powers\",\"description_text\":\"\\nChief Customer Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5514122d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b941c61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54720aea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Roman Kazmin\",\"description_text\":\"\\nGeneral Manager\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fcf9d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"123ba4af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-8.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b9701df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Bethany Ellis\",\"description_text\":\"\\nChief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a87013a\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_overlay_position_mobile\":\"center center\",\"background_overlay_repeat_tablet\":\"repeat-y\",\"background_overlay_repeat_mobile\":\"repeat-y\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]}},\"elements\":[{\"id\":\"5872d874\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6e7d2496\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23740a1b\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"2fc9b9e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"bottom\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5f6c62af\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d869253\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2245bf0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":true},{\"id\":\"68e71fe2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eebfac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58020225\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"1486434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":true},{\"id\":\"53cc1013\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2baff150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e290dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a7d6c6c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"462743ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#9ECAD7\",\"background_image\":{\"id\":78,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon013.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\"},\"elements\":[{\"id\":\"7c46dd6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"CAN WE HELP \",\"description_text\":\"Looking for product support\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51ff5205\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2bba77cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#929CFF\",\"background_image\":{\"id\":79,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon012.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\"},\"elements\":[{\"id\":\"3d93bff1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Find Influencer\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=accent\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"335933cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c357cad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FF9C93\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon014.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\"},\"elements\":[{\"id\":\"5ea89326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"creator management\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"62d59aef\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1479,283,'_elementor_edit_mode','builder'),(1480,283,'_elementor_template_type','wp-page'),(1481,283,'_elementor_version','3.7.7'),(1482,283,'_wp_page_template','default'),(1483,283,'_elementor_data','[{\"id\":\"112af95d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_color\":\"#F1F1F3\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e04632a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"content_position\":\"center\",\"background_image\":{\"id\":72,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Union-11.png\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-12.png\",\"id\":862,\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/Union-15.png\",\"id\":871,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_position_tablet\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f9314bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1d9e6864\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5470616c\",\"elType\":\"widget\",\"settings\":{\"title\":\"About influence\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=c64725e\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-72,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19791fb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Art and Science of Influencer Marketing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412f463b\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"align_mobile\":\"center\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":-100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"457f9512\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56dd0c7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon09.png\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-6\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72cf25fd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22f0fc1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"159d4da2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380dd516\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":73,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp012.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d2ed95e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"cff5037\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2d0ed01c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cbc5b9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":74,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp014.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14ba14c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"610b3688\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5381e858\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"700631c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":75,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp013.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"455b8074\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20cae6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"37eb00d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d473958\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":76,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp015.jpg\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67e16566\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50d78a37\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56c63755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e49b977\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help Brands <br>work more efficiently \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1817b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"by connecting them to Influencers.\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ace63b4\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"353caaf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit suspendisse, etiam vulputate gravida netus parturient est imperdiet, cubilia leo aliquam magnis fames ullamcorper semper. Massa bibendum aenean aliquet sociosqu mauris dignissim curae ad, luctus at sapien metus suscipit eros convallis, quis phasellus proin habitant egestas condimentum potenti.<\\/p><p>\\u00a0<\\/p><p>Semper nascetur ultricies risus maecenas malesuada ac, metus leo pellentesque imperdiet porta cursus, arcu nisi per class lacus. Eleifend magnis sociis volutpat nullam aliquet scelerisque hendrerit hac sagittis, neque eget proin molestie lacinia erat tincidunt litora tristique nisi, pulvinar ligula lectus nisl et augue in tempor.<\\/p>\",\"text_columns\":\"2\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a26837f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ef71c75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\"},\"elements\":[{\"id\":\"68038cc5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"28fa2fcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customers\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52cbc3b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\"},\"elements\":[{\"id\":\"3a13262f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"M +\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2b2b581b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Profiles Monitored\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"39841793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"content_position\":\"center\"},\"elements\":[{\"id\":\"6f44c02f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"523003e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nEmployees\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b2a5609\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"285f78a1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1500,\"suffix\":\"+\",\"title\":\"\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=d15501b\",\"typography_title_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"29c6a6bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Creators in our database\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"487b6295\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"723b70f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"38414bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45768cb9\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5849ae82\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7e9865bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7a91d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"408c5e45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"715a0593\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"277ca81\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45f4928c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2165f7dc\",\"elType\":\"widget\",\"settings\":{\"style\":\"dashed\",\"look\":\"line_text\",\"text\":\"brand support\",\"text_spacing\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cde190b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc93e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ec34535\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leadership Team\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e8f0d80\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b6cf69f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ad8d3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"53af71af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-6.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b057b25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jamie Foxx\",\"description_text\":\"CEO influence\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2c4a7ce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"167c88ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":20,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-4.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d7bdd7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Miley Cyrus\",\"description_text\":\"Chief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1d5d1400\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"4bd40c75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":27,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6bdff381\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Jonathan \",\"description_text\":\"SVP, Head of Sales\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29dabd8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7870ce71\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f88ad80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-7.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"245512d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Max Powers\",\"description_text\":\"\\nChief Customer Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5514122d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b941c61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-1.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"54720aea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Roman Kazmin\",\"description_text\":\"\\nGeneral Manager\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fcf9d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"123ba4af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/influencer-8.jpg\"},\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b9701df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Bethany Ellis\",\"description_text\":\"\\nChief People Officer\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a87013a\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_overlay_position_mobile\":\"center center\",\"background_overlay_repeat_tablet\":\"repeat-y\",\"background_overlay_repeat_mobile\":\"repeat-y\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]}},\"elements\":[{\"id\":\"5872d874\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6e7d2496\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23740a1b\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"2fc9b9e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"bottom\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5f6c62af\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d869253\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2245bf0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":true},{\"id\":\"68e71fe2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eebfac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58020225\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"1486434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":true},{\"id\":\"53cc1013\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2baff150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e290dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a7d6c6c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"462743ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#9ECAD7\",\"background_image\":{\"id\":78,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon013.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\"},\"elements\":[{\"id\":\"7c46dd6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"CAN WE HELP \",\"description_text\":\"Looking for product support\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51ff5205\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2bba77cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#929CFF\",\"background_image\":{\"id\":79,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon012.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\"},\"elements\":[{\"id\":\"3d93bff1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Find Influencer\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=accent\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"335933cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c357cad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FF9C93\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon014.png\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_bg_width_tablet\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_inline_size_tablet\":50,\"background_size_mobile\":\"initial\"},\"elements\":[{\"id\":\"5ea89326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"creator management\",\"description_text\":\"Start Growing Your Brand\",\"position\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=f127f7f\",\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=6f3f7d4\"},\"text_align_mobile\":\"left\",\"description_color\":\"#181B31\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_text_transform\":\"none\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"62d59aef\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=cd4e809\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1484,278,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1492,285,'_wp_page_template','default'),(1493,285,'_elementor_edit_mode','builder'),(1494,285,'_elementor_template_type','wp-post'),(1495,285,'_elementor_version','3.7.7'),(1496,285,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1497,285,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1498,286,'_wp_page_template','default'),(1499,286,'_elementor_edit_mode','builder'),(1500,286,'_elementor_template_type','wp-post'),(1501,286,'_elementor_version','3.7.7'),(1502,286,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ea0e07a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"2f0c31ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#94CFD6\",\"border_radius_mobile\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"713c96a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"72cc3a9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with Influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"358d5ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":15,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp09.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"#92CFD7\",\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1503,286,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1504,287,'_wp_page_template','default'),(1505,287,'_elementor_edit_mode','builder'),(1506,287,'_elementor_template_type','wp-post'),(1507,287,'_elementor_version','3.7.7'),(1508,287,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1509,287,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(1516,289,'_wp_page_template','default'),(1517,289,'_elementor_edit_mode','builder'),(1518,289,'_elementor_template_type','wp-post'),(1519,289,'_elementor_version','3.7.7'),(1520,289,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1521,289,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1522,290,'_wp_page_template','default'),(1523,290,'_elementor_edit_mode','builder'),(1524,290,'_elementor_template_type','wp-post'),(1525,290,'_elementor_version','3.7.7'),(1526,290,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-22\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1527,290,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1528,291,'_wp_page_template','default'),(1529,291,'_elementor_edit_mode','builder'),(1530,291,'_elementor_template_type','wp-post'),(1531,291,'_elementor_version','3.7.7'),(1532,291,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1533,291,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1535,292,'_wp_page_template','elementor_header_footer'),(1536,292,'_elementor_edit_mode','builder'),(1537,292,'_elementor_template_type','wp-page'),(1538,292,'_elementor_version','3.7.7'),(1539,292,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1540,292,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1542,293,'_wp_page_template','elementor_header_footer'),(1543,293,'_elementor_edit_mode','builder'),(1544,293,'_elementor_template_type','wp-page'),(1545,293,'_elementor_version','3.7.7'),(1546,293,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1547,293,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1549,294,'_wp_page_template','elementor_header_footer'),(1550,294,'_elementor_edit_mode','builder'),(1551,294,'_elementor_template_type','wp-page'),(1552,294,'_elementor_version','3.7.7'),(1553,294,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1554,294,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1556,295,'_wp_page_template','elementor_header_footer'),(1557,295,'_elementor_edit_mode','builder'),(1558,295,'_elementor_template_type','wp-page'),(1559,295,'_elementor_version','3.7.7'),(1560,295,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1561,295,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1562,296,'_wp_page_template','elementor_header_footer'),(1563,296,'_elementor_edit_mode','builder'),(1564,296,'_elementor_template_type','wp-page'),(1565,296,'_elementor_version','3.7.7'),(1566,296,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1567,296,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1568,297,'_wp_page_template','elementor_header_footer'),(1569,297,'_elementor_edit_mode','builder'),(1570,297,'_elementor_template_type','wp-page'),(1571,297,'_elementor_version','3.7.7'),(1572,297,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1573,297,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1574,298,'_wp_page_template','elementor_header_footer'),(1575,298,'_elementor_edit_mode','builder'),(1576,298,'_elementor_template_type','wp-page'),(1577,298,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1578,298,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1579,298,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1580,299,'_wp_page_template','elementor_header_footer'),(1581,299,'_elementor_edit_mode','builder'),(1582,299,'_elementor_template_type','wp-page'),(1583,299,'_elementor_version','3.7.7'),(1584,299,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1585,299,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1586,300,'_wp_page_template','elementor_header_footer'),(1587,300,'_elementor_edit_mode','builder'),(1588,300,'_elementor_template_type','wp-page'),(1589,300,'_elementor_version','3.7.7'),(1590,300,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1591,300,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1592,301,'_wp_page_template','elementor_header_footer'),(1593,301,'_elementor_edit_mode','builder'),(1594,301,'_elementor_template_type','wp-page'),(1595,301,'_elementor_version','3.7.7'),(1596,301,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1597,301,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1598,302,'_wp_page_template','elementor_header_footer'),(1599,302,'_elementor_edit_mode','builder'),(1600,302,'_elementor_template_type','wp-page'),(1601,302,'_elementor_version','3.7.7'),(1602,302,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1603,302,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1604,303,'_wp_page_template','elementor_header_footer'),(1605,303,'_elementor_edit_mode','builder'),(1606,303,'_elementor_template_type','wp-page'),(1607,303,'_elementor_version','3.7.7'),(1608,303,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1609,303,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1610,304,'_wp_page_template','elementor_header_footer'),(1611,304,'_elementor_edit_mode','builder'),(1612,304,'_elementor_template_type','wp-page'),(1613,304,'_elementor_version','3.7.7'),(1614,304,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1615,304,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1616,305,'_wp_page_template','elementor_header_footer'),(1617,305,'_elementor_edit_mode','builder'),(1618,305,'_elementor_template_type','wp-page'),(1619,305,'_elementor_version','3.7.7'),(1620,305,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1621,305,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1622,306,'_wp_page_template','elementor_header_footer'),(1623,306,'_elementor_edit_mode','builder'),(1624,306,'_elementor_template_type','wp-page'),(1625,306,'_elementor_version','3.7.7'),(1626,306,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1627,306,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1628,307,'_wp_page_template','elementor_header_footer'),(1629,307,'_elementor_edit_mode','builder'),(1630,307,'_elementor_template_type','wp-page'),(1631,307,'_elementor_version','3.7.7'),(1632,307,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1633,307,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1634,308,'_wp_page_template','elementor_header_footer'),(1635,308,'_elementor_edit_mode','builder'),(1636,308,'_elementor_template_type','wp-page'),(1637,308,'_elementor_version','3.7.7'),(1638,308,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1639,308,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1640,309,'_wp_page_template','elementor_header_footer'),(1641,309,'_elementor_edit_mode','builder'),(1642,309,'_elementor_template_type','wp-page'),(1643,309,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1644,309,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1645,309,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1646,310,'_wp_page_template','elementor_header_footer'),(1647,310,'_elementor_edit_mode','builder'),(1648,310,'_elementor_template_type','wp-page'),(1649,310,'_elementor_version','3.7.7'),(1650,310,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1651,310,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1652,311,'_wp_page_template','elementor_header_footer'),(1653,311,'_elementor_edit_mode','builder'),(1654,311,'_elementor_template_type','wp-page'),(1655,311,'_elementor_version','3.7.7'),(1656,311,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1657,311,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1658,312,'_wp_page_template','elementor_header_footer'),(1659,312,'_elementor_edit_mode','builder'),(1660,312,'_elementor_template_type','wp-page'),(1661,312,'_elementor_version','3.7.7'),(1662,312,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1663,312,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1664,313,'_wp_page_template','elementor_header_footer'),(1665,313,'_elementor_edit_mode','builder'),(1666,313,'_elementor_template_type','wp-page'),(1667,313,'_elementor_version','3.7.7'),(1668,313,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1669,313,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1670,314,'_wp_page_template','elementor_header_footer'),(1671,314,'_elementor_edit_mode','builder'),(1672,314,'_elementor_template_type','wp-page'),(1673,314,'_elementor_version','3.7.7'),(1674,314,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1675,314,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1676,315,'_wp_page_template','elementor_header_footer'),(1677,315,'_elementor_edit_mode','builder'),(1678,315,'_elementor_template_type','wp-page'),(1679,315,'_elementor_version','3.7.7'),(1680,315,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1681,315,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1682,316,'_wp_page_template','elementor_header_footer'),(1683,316,'_elementor_edit_mode','builder'),(1684,316,'_elementor_template_type','wp-page'),(1685,316,'_elementor_version','3.7.7'),(1686,316,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1687,316,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1688,317,'_wp_page_template','elementor_header_footer'),(1689,317,'_elementor_edit_mode','builder'),(1690,317,'_elementor_template_type','wp-page'),(1691,317,'_elementor_version','3.7.7'),(1692,317,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1693,317,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1694,318,'_wp_page_template','elementor_header_footer'),(1695,318,'_elementor_edit_mode','builder'),(1696,318,'_elementor_template_type','wp-page'),(1697,318,'_elementor_version','3.7.7'),(1698,318,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1699,318,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1700,319,'_wp_page_template','elementor_header_footer'),(1701,319,'_elementor_edit_mode','builder'),(1702,319,'_elementor_template_type','wp-page'),(1703,319,'_elementor_version','3.7.7'),(1704,319,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1705,319,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1706,320,'_wp_page_template','elementor_header_footer'),(1707,320,'_elementor_edit_mode','builder'),(1708,320,'_elementor_template_type','wp-page'),(1709,320,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1710,320,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1711,320,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1712,321,'_wp_page_template','elementor_header_footer'),(1713,321,'_elementor_edit_mode','builder'),(1714,321,'_elementor_template_type','wp-page'),(1715,321,'_elementor_version','3.7.7'),(1716,321,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1717,321,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1718,322,'_wp_page_template','elementor_header_footer'),(1719,322,'_elementor_edit_mode','builder'),(1720,322,'_elementor_template_type','wp-page'),(1721,322,'_elementor_version','3.7.7'),(1722,322,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1723,322,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1724,323,'_wp_page_template','elementor_header_footer'),(1725,323,'_elementor_edit_mode','builder'),(1726,323,'_elementor_template_type','wp-page'),(1727,323,'_elementor_version','3.7.7'),(1728,323,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1729,323,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1730,324,'_wp_page_template','elementor_header_footer'),(1731,324,'_elementor_edit_mode','builder'),(1732,324,'_elementor_template_type','wp-page'),(1733,324,'_elementor_version','3.7.7'),(1734,324,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1735,324,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1736,325,'_wp_page_template','elementor_header_footer'),(1737,325,'_elementor_edit_mode','builder'),(1738,325,'_elementor_template_type','wp-page'),(1739,325,'_elementor_version','3.7.7'),(1740,325,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1741,325,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1742,326,'_wp_page_template','elementor_header_footer'),(1743,326,'_elementor_edit_mode','builder'),(1744,326,'_elementor_template_type','wp-page'),(1745,326,'_elementor_version','3.7.7'),(1746,326,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1747,326,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1748,327,'_wp_page_template','elementor_header_footer'),(1749,327,'_elementor_edit_mode','builder'),(1750,327,'_elementor_template_type','wp-page'),(1751,327,'_elementor_version','3.7.7'),(1752,327,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1753,327,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1754,328,'_wp_page_template','elementor_header_footer'),(1755,328,'_elementor_edit_mode','builder'),(1756,328,'_elementor_template_type','wp-page'),(1757,328,'_elementor_version','3.7.7'),(1758,328,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1759,328,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1760,329,'_wp_page_template','elementor_header_footer'),(1761,329,'_elementor_edit_mode','builder'),(1762,329,'_elementor_template_type','wp-page'),(1763,329,'_elementor_version','3.7.7'),(1764,329,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1765,329,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1766,330,'_wp_page_template','elementor_header_footer'),(1767,330,'_elementor_edit_mode','builder'),(1768,330,'_elementor_template_type','wp-page'),(1769,330,'_elementor_version','3.7.7'),(1770,330,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1771,330,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1772,331,'_wp_page_template','elementor_header_footer'),(1773,331,'_elementor_edit_mode','builder'),(1774,331,'_elementor_template_type','wp-page'),(1775,331,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (1776,331,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1777,331,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1778,332,'_wp_page_template','elementor_header_footer'),(1779,332,'_elementor_edit_mode','builder'),(1780,332,'_elementor_template_type','wp-page'),(1781,332,'_elementor_version','3.7.7'),(1782,332,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1783,332,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1784,333,'_wp_page_template','elementor_header_footer'),(1785,333,'_elementor_edit_mode','builder'),(1786,333,'_elementor_template_type','wp-page'),(1787,333,'_elementor_version','3.7.7'),(1788,333,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1789,333,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1790,334,'_wp_page_template','elementor_header_footer'),(1791,334,'_elementor_edit_mode','builder'),(1792,334,'_elementor_template_type','wp-page'),(1793,334,'_elementor_version','3.7.7'),(1794,334,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1795,334,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1796,335,'_wp_page_template','elementor_header_footer'),(1797,335,'_elementor_edit_mode','builder'),(1798,335,'_elementor_template_type','wp-page'),(1799,335,'_elementor_version','3.7.7'),(1800,335,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1801,335,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1802,336,'_wp_page_template','elementor_header_footer'),(1803,336,'_elementor_edit_mode','builder'),(1804,336,'_elementor_template_type','wp-page'),(1805,336,'_elementor_version','3.7.7'),(1806,336,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1807,336,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1809,337,'_wp_attached_file','2022/09/Artboard.png'),(1810,337,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1241;s:6:\"height\";i:348;s:4:\"file\";s:20:\"2022/09/Artboard.png\";s:8:\"filesize\";i:726213;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Artboard-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45119;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Artboard-1024x287.png\";s:5:\"width\";i:1024;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:441439;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Artboard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40350;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Artboard-768x215.png\";s:5:\"width\";i:768;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:258333;}}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:{}}}'),(1811,338,'_wp_page_template','elementor_header_footer'),(1812,338,'_elementor_edit_mode','builder'),(1813,338,'_elementor_template_type','wp-page'),(1814,338,'_elementor_version','3.7.7'),(1815,338,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1816,338,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1818,339,'_wp_page_template','elementor_header_footer'),(1819,339,'_elementor_edit_mode','builder'),(1820,339,'_elementor_template_type','wp-page'),(1821,339,'_elementor_version','3.7.7'),(1822,339,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1823,339,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1825,340,'_wp_page_template','elementor_header_footer'),(1826,340,'_elementor_edit_mode','builder'),(1827,340,'_elementor_template_type','wp-page'),(1828,340,'_elementor_version','3.7.7'),(1829,340,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(1830,340,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1842,342,'_edit_lock','1668510449:1'),(1851,342,'_wp_page_template','elementor_header_footer'),(1852,342,'_elementor_edit_mode','builder'),(1853,342,'_elementor_template_type','wp-page'),(1854,342,'_elementor_version','3.8.1'),(1856,345,'_wp_page_template','elementor_header_footer'),(1857,345,'_elementor_edit_mode','builder'),(1858,345,'_elementor_template_type','wp-page'),(1859,345,'_elementor_version','3.8.1'),(1860,345,'_elementor_data','[{\"id\":\"6759884\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8c83af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1dde3\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":75,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2022\\/09\\/jp013.jpg\"},{\"id\":74,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2022\\/09\\/jp014.jpg\"},{\"id\":73,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2022\\/09\\/jp012.jpg\"}],\"slides_to_show\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"255f89b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3ca003a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3efdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd32e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"79102f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"24b7d92\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2022\\/09\\/icon011.png\",\"id\":100,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1861,345,'_elementor_page_assets','a:0:{}'),(1863,277,'_wp_old_date','2022-09-22'),(1864,279,'_wp_old_date','2022-09-22'),(1865,166,'_wp_old_date','2022-09-22'),(1866,175,'_wp_old_date','2022-09-22'),(1883,347,'_edit_last','1'),(1884,347,'_edit_lock','1677587751:1'),(1885,347,'_wp_page_template','elementor_header_footer'),(1886,347,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(1887,347,'ehf_target_exclude_locations','a:0:{}'),(1888,347,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(1889,347,'ehf_template_type','type_header'),(1890,347,'_elementor_edit_mode','builder'),(1891,347,'_elementor_template_type','wp-post'),(1892,347,'_elementor_version','3.10.2'),(1904,347,'_eael_custom_js',''),(1906,139,'_eael_custom_js',''),(1910,347,'ekit_post_views_count','2'),(1918,350,'_wp_attached_file','2023/02/We-Influence.webp'),(1919,350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:780;s:4:\"file\";s:25:\"2023/02/We-Influence.webp\";s:8:\"filesize\";i:26212;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"We-Influence-300x122.webp\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3854;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"We-Influence-1024x416.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"We-Influence-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3532;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"We-Influence-768x312.webp\";s:5:\"width\";i:768;s:6:\"height\";i:312;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11488;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"We-Influence-1536x624.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:624;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27404;}}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:{}}}'),(1920,351,'_wp_page_template','elementor_header_footer'),(1921,351,'_elementor_edit_mode','builder'),(1922,351,'_elementor_template_type','wp-post'),(1923,351,'_elementor_version','3.10.2'),(1924,352,'_wp_page_template','elementor_header_footer'),(1925,352,'_elementor_edit_mode','builder'),(1926,352,'_elementor_template_type','wp-post'),(1927,352,'_elementor_version','3.10.2'),(1928,347,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\",\"resp_align\":\"right\",\"color_menu_item_hover\":\"#904EFB\",\"bg_color_menu_item_hover\":\"#FFFFFF\",\"distance_from_menu_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1929,353,'_wp_page_template','elementor_header_footer'),(1930,353,'_elementor_edit_mode','builder'),(1931,353,'_elementor_template_type','wp-post'),(1932,353,'_elementor_version','3.10.2'),(1933,353,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1934,347,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1936,354,'_wp_page_template','elementor_header_footer'),(1937,354,'_elementor_edit_mode','builder'),(1938,354,'_elementor_template_type','wp-post'),(1939,354,'_elementor_version','3.10.2'),(1940,354,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1941,354,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1942,355,'_wp_page_template','elementor_header_footer'),(1943,355,'_elementor_edit_mode','builder'),(1944,355,'_elementor_template_type','wp-post'),(1945,355,'_elementor_version','3.10.2'),(1946,355,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1947,355,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1948,356,'_wp_page_template','elementor_header_footer'),(1949,356,'_elementor_edit_mode','builder'),(1950,356,'_elementor_template_type','wp-post'),(1951,356,'_elementor_version','3.10.2'),(1952,356,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1953,356,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1956,139,'ekit_post_views_count','1'),(1957,357,'_wp_page_template','elementor_header_footer'),(1958,357,'_elementor_edit_mode','builder'),(1959,357,'_elementor_template_type','wp-post'),(1960,357,'_elementor_version','3.10.2'),(1961,357,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1962,357,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1964,358,'_wp_page_template','elementor_header_footer'),(1965,358,'_elementor_edit_mode','builder'),(1966,358,'_elementor_template_type','wp-post'),(1967,358,'_elementor_version','3.10.2'),(1968,358,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1969,358,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1971,359,'_wp_page_template','elementor_header_footer'),(1972,359,'_elementor_edit_mode','builder'),(1973,359,'_elementor_template_type','wp-post'),(1974,359,'_elementor_version','3.10.2'),(1975,359,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\",\"resp_align\":\"right\",\"color_menu_item_hover\":\"#904EFB\",\"bg_color_menu_item_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1976,359,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1980,360,'_wp_page_template','default'),(1981,360,'_elementor_edit_mode','builder'),(1982,360,'_elementor_template_type','wp-post'),(1983,360,'_elementor_version','3.7.7'),(1984,360,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1985,360,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1987,361,'_wp_page_template','default'),(1988,361,'_elementor_edit_mode','builder'),(1989,361,'_elementor_template_type','wp-post'),(1990,361,'_elementor_version','3.7.7'),(1991,361,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2022 Influence. All Rights Reserved by Onecontributor\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1992,361,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1994,362,'_wp_page_template','default'),(1995,362,'_elementor_edit_mode','builder'),(1996,362,'_elementor_template_type','wp-post'),(1997,362,'_elementor_version','3.7.7'),(1998,362,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a92023 We Influence. Powered by WhatTheHell?\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1999,362,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2009,364,'_wp_page_template','default'),(2010,364,'_elementor_edit_mode','builder'),(2011,364,'_elementor_template_type','wp-post'),(2012,364,'_elementor_version','3.10.2'),(2013,364,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a92023 We Influence. Powered by WhatTheHell?\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2014,364,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2015,365,'_wp_page_template','default'),(2016,365,'_elementor_edit_mode','builder'),(2017,365,'_elementor_template_type','wp-post'),(2018,365,'_elementor_version','3.10.2'),(2019,365,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"50\"},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":10,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5dc065a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.986000000000001,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"35829a41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a92023 We Influence. Powered by WhatTheHell?\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2020,365,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2021,366,'_wp_page_template','default'),(2022,366,'_elementor_edit_mode','builder'),(2023,366,'_elementor_template_type','wp-post'),(2024,366,'_elementor_version','3.10.2'),(2025,366,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16.02,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.98,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a92023 We Influence. Powered by WhatTheHell?\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2026,366,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2029,367,'_wp_page_template','default'),(2030,367,'_elementor_edit_mode','builder'),(2031,367,'_elementor_template_type','wp-post'),(2032,367,'_elementor_version','3.10.2'),(2033,367,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16.02,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.98,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a92023 We Influence. Powered by WhatTheHell?\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2034,367,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2036,368,'_wp_page_template','default'),(2037,368,'_elementor_edit_mode','builder'),(2038,368,'_elementor_template_type','wp-post'),(2039,368,'_elementor_version','3.10.2'),(2040,368,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":30,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16.02,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.98,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a92023 We Influence. Powered by WhatTheHell?\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2041,368,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2043,369,'_wp_page_template','default'),(2044,369,'_elementor_edit_mode','builder'),(2045,369,'_elementor_template_type','wp-post'),(2046,369,'_elementor_version','3.10.2'),(2047,369,'_elementor_data','[{\"id\":\"27bbae92\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"z_index\":1,\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"gap\":\"no\",\"height\":\"min-height\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2341837a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cba1511\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":13,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-7.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":14,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon08.png\"},\"_mask_size_scale\":{\"unit\":\"%\",\"size\":101,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5898e5e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"button_text_color\":\"#181B31\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"background_color\":\"#904EFB00\",\"hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_duration\":\"fast\",\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_hover_border_color\":\"#F7F9FB\",\"border_color\":\"#646778\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"424a9aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: var( --e-global-color-primary ); font-family: var( --e-global-typography-d5d9df9-font-family ), Sans-serif; font-size: var( --e-global-typography-d5d9df9-font-size ); font-weight: var( --e-global-typography-d5d9df9-font-weight ); letter-spacing: var( --e-global-typography-d5d9df9-letter-spacing ); text-transform: var( --e-global-typography-d5d9df9-text-transform );\\\">START GROWING YOUR BRAND WITH INFLUENCE TODAY<\\/span>\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"-26\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-24\",\"right\":\"31\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"_z_index_mobile\":1,\"animation_duration\":\"fast\",\"size\":\"large\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3faf80d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F3F4F8\",\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-4\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e7b1bc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4932e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4544d2c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5c8d826b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"586f5ecd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dd424a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow us on\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"140ef960\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"d9d90b2\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"39ed829\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"4369234\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01da26\"}],\"shape\":\"circle\",\"align\":\"left\",\"align_mobile\":\"center\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\",\"icon_secondary_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5789182f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.02,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6733b8d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0a963\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Partnerships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Press & media\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"06d06cb\"},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"416923f\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2e2d9ea0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.98,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f6a940\",\"elType\":\"widget\",\"settings\":{\"title\":\"Influencer\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b7d935\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Influencer Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Influencer Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Find Instagram Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Find YouTube Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Find TikTok Influencers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d937e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f42ae63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=569b2c4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63d5c06b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Case studies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6426881\"},{\"text\":\"Brand influence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"f1f961a\"},{\"text\":\"Alternatives\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"69bf1df\"},{\"text\":\"Integrations\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b1907be\"},{\"text\":\"Creators\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9b0704d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4495054c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3ed3f352\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d97dc30\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a92023 We Influence. Powered by WhatTheHell?\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=41b9d89\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2048,369,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2050,139,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:16:\"_section_masking\";a:3:{s:11:\"_mask_shape\";i:1;s:11:\"_mask_image\";i:1;s:16:\"_mask_size_scale\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:19:{s:17:\"button_text_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"text_padding\";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:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;s:25:\"button_hover_border_color\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;s:18:\"animation_duration\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:5:\"align\";i:2;s:4:\"size\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;s:18:\"animation_duration\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:3;s:3:\"gap\";i:1;s:6:\"height\";i:1;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"z_index\";i:1;s:6:\"margin\";i:3;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:4:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}}}}}'),(2053,370,'_wp_page_template','elementor_header_footer'),(2054,370,'_elementor_edit_mode','builder'),(2055,370,'_elementor_template_type','wp-page'),(2056,370,'_elementor_version','3.7.7');
INSERT INTO `wp_postmeta` VALUES (2057,370,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2058,370,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2059,371,'_wp_page_template','elementor_header_footer'),(2060,371,'_elementor_edit_mode','builder'),(2061,371,'_elementor_template_type','wp-page'),(2062,371,'_elementor_version','3.7.7'),(2063,371,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"101\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2064,371,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2065,372,'_wp_page_template','elementor_header_footer'),(2066,372,'_elementor_edit_mode','builder'),(2067,372,'_elementor_template_type','wp-page'),(2068,372,'_elementor_version','3.7.7'),(2069,372,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2070,372,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2081,374,'_wp_page_template','elementor_header_footer'),(2082,374,'_elementor_edit_mode','builder'),(2083,374,'_elementor_template_type','wp-page'),(2084,374,'_elementor_version','3.10.2'),(2085,374,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2086,374,'_elementor_page_assets','a:1:{s:6:\"styles\";a:60:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";}}'),(2087,375,'_wp_page_template','elementor_header_footer'),(2088,375,'_elementor_edit_mode','builder'),(2089,375,'_elementor_template_type','wp-page'),(2090,375,'_elementor_version','3.10.2'),(2091,375,'_elementor_data','[{\"id\":\"7cc6519f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2ddd9ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"243485dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63ff9c96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30ac978e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b0afb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3d3e1ffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost business with influencer marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a99cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc3573b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1396cfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"242cafd8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b8b42a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28dafe8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2092,375,'_elementor_page_assets','a:1:{s:6:\"styles\";a:60:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";}}'),(2093,376,'_wp_page_template','elementor_header_footer'),(2094,376,'_elementor_edit_mode','builder'),(2095,376,'_elementor_template_type','wp-page'),(2096,376,'_elementor_version','3.10.2'),(2097,376,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"26\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"030\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2098,376,'_elementor_page_assets','a:1:{s:6:\"styles\";a:60:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";}}'),(2101,377,'_wp_page_template','elementor_header_footer'),(2102,377,'_elementor_edit_mode','builder'),(2103,377,'_elementor_template_type','wp-page'),(2104,377,'_elementor_version','3.10.2'),(2105,377,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"26\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"030\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2106,377,'_elementor_page_assets','a:1:{s:6:\"styles\";a:59:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";}}'),(2108,378,'_wp_page_template','elementor_header_footer'),(2109,378,'_elementor_edit_mode','builder'),(2110,378,'_elementor_template_type','wp-page'),(2111,378,'_elementor_version','3.10.2'),(2112,378,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"26\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"030\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2113,378,'_elementor_page_assets','a:1:{s:6:\"styles\";a:59:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";}}'),(2115,379,'_wp_page_template','elementor_header_footer'),(2116,379,'_elementor_edit_mode','builder'),(2117,379,'_elementor_template_type','wp-page'),(2118,379,'_elementor_version','3.10.2'),(2119,379,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2120,379,'_elementor_page_assets','a:1:{s:6:\"styles\";a:59:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";}}'),(2136,381,'_wp_page_template','elementor_header_footer'),(2137,381,'_elementor_edit_mode','builder'),(2138,381,'_elementor_template_type','wp-post'),(2139,381,'_elementor_version','3.10.2'),(2140,381,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\",\"resp_align\":\"right\",\"color_menu_item_hover\":\"#904EFB\",\"bg_color_menu_item_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2141,381,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2143,382,'_wp_page_template','elementor_header_footer'),(2144,382,'_elementor_edit_mode','builder'),(2145,382,'_elementor_template_type','wp-post'),(2146,382,'_elementor_version','3.10.2'),(2147,382,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\",\"resp_align\":\"right\",\"color_menu_item_hover\":\"#904EFB\",\"bg_color_menu_item_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2148,382,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2150,383,'_wp_page_template','elementor_header_footer'),(2151,383,'_elementor_edit_mode','builder'),(2152,383,'_elementor_template_type','wp-post'),(2153,383,'_elementor_version','3.10.2'),(2154,383,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\",\"resp_align\":\"right\",\"color_menu_item_hover\":\"#904EFB\",\"bg_color_menu_item_hover\":\"#FFFFFF\",\"distance_from_menu_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2155,383,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2159,384,'_wp_page_template','elementor_header_footer'),(2160,384,'_elementor_edit_mode','builder'),(2161,384,'_elementor_template_type','wp-post'),(2162,384,'_elementor_version','3.10.2'),(2163,384,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\",\"resp_align\":\"right\",\"color_menu_item_hover\":\"#904EFB\",\"bg_color_menu_item_hover\":\"#FFFFFF\",\"distance_from_menu_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2164,384,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2166,385,'_wp_page_template','elementor_header_footer'),(2167,385,'_elementor_edit_mode','builder'),(2168,385,'_elementor_template_type','wp-post'),(2169,385,'_elementor_version','3.10.2'),(2170,385,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\",\"resp_align\":\"right\",\"color_menu_item_hover\":\"#904EFB\",\"bg_color_menu_item_hover\":\"#FFFFFF\",\"distance_from_menu_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2171,385,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2173,386,'_wp_page_template','elementor_header_footer'),(2174,386,'_elementor_edit_mode','builder'),(2175,386,'_elementor_template_type','wp-post'),(2176,386,'_elementor_version','3.10.2'),(2177,386,'_elementor_data','[{\"id\":\"6f2829c5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1440,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"1.5\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"350d0fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":25,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"4e3c7dc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/02\\/We-Influence.webp\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/weinfluence-new.in8.cdn-alpha.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2d457012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332000000000001,\"_inline_size_tablet\":45,\"_inline_size_mobile\":50,\"content_position\":\"center\"},\"elements\":[{\"id\":\"713e4eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"center\",\"resp_align\":\"right\",\"color_menu_item_hover\":\"#904EFB\",\"bg_color_menu_item_hover\":\"#FFFFFF\",\"distance_from_menu_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"77f438ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":28,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"44d8fe96\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"25\",\"bottom\":\"3\",\"left\":\"25\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2178,386,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(2180,347,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";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:2:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:13:\"navmenu_align\";i:1;s:10:\"resp_align\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:2:{s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;}s:22:\"section_style_dropdown\";a:1:{s:25:\"distance_from_menu_mobile\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:17:\"button_text_color\";i:1;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;s:18:\"animation_duration\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(2182,387,'_wp_page_template','elementor_header_footer'),(2183,387,'_elementor_edit_mode','builder'),(2184,387,'_elementor_template_type','wp-page'),(2185,387,'_elementor_version','3.10.2');
INSERT INTO `wp_postmeta` VALUES (2186,387,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2187,387,'_elementor_page_assets','a:1:{s:6:\"styles\";a:60:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";}}'),(2188,388,'_wp_page_template','elementor_header_footer'),(2189,388,'_elementor_edit_mode','builder'),(2190,388,'_elementor_template_type','wp-page'),(2191,388,'_elementor_version','3.10.2'),(2192,388,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.332000000000001,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2193,388,'_elementor_page_assets','a:1:{s:6:\"styles\";a:60:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";}}'),(2194,389,'_wp_page_template','elementor_header_footer'),(2195,389,'_elementor_edit_mode','builder'),(2196,389,'_elementor_template_type','wp-page'),(2197,389,'_elementor_version','3.10.2'),(2198,389,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2199,389,'_elementor_page_assets','a:1:{s:6:\"styles\";a:60:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";}}'),(2210,391,'_wp_page_template','elementor_header_footer'),(2211,391,'_elementor_edit_mode','builder'),(2212,391,'_elementor_template_type','wp-page'),(2213,391,'_elementor_version','3.10.2'),(2214,391,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2215,391,'_elementor_page_assets','a:1:{s:6:\"styles\";a:60:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";}}'),(2216,392,'_wp_page_template','elementor_header_footer'),(2217,392,'_elementor_edit_mode','builder'),(2218,392,'_elementor_template_type','wp-page'),(2219,392,'_elementor_version','3.10.2'),(2220,392,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63c15cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"}},\"elements\":[{\"id\":\"2d6c262\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"edb60d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54f246\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9a79250\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b92909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4855a8d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1dd8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Affiliate & Conversion \",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a1db6be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"10159d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84c2886\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Online Events\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"07946d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4f184a\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"53a6210\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Product Placement\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06bc270\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b1b9ebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e6b54\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dfd416f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Reach & Frequency\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5bea1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80ab3c0\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3992a9c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Product Sampling\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"16301b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6778449\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"276fc0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"525676bb\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2f84e0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"5d7cf2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"142c667c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10827699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"388b9565\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"649fa35d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"e6ed56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b68406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"435cfbb3\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"230131f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"6da5436\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"56d7927b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1478e845\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"18bfe862\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994d440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"318ad7a\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"122c6aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"5860aaf4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ac668c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37ebc83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d8c356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"102e1c52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12da7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"19365588\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38f16b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"306b5123\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4543d757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fd2bafe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78fef5a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"29dae917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"552f6d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"110b9057\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2221,392,'_elementor_page_assets','a:1:{s:6:\"styles\";a:60:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";}}'),(2222,393,'_wp_page_template','elementor_header_footer'),(2223,393,'_elementor_edit_mode','builder'),(2224,393,'_elementor_template_type','wp-page'),(2225,393,'_elementor_version','3.10.2'),(2226,393,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2227,393,'_elementor_page_assets','a:1:{s:6:\"styles\";a:60:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";}}'),(2230,394,'_wp_attached_file','2023/03/We-Influence-Logo.webp'),(2231,394,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:354;s:6:\"height\";i:354;s:4:\"file\";s:30:\"2023/03/We-Influence-Logo.webp\";s:8:\"filesize\";i:6922;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"We-Influence-Logo-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"We-Influence-Logo-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3284;}}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:{}}}'),(2232,395,'_wp_attached_file','2023/03/cropped-We-Influence-Logo.webp'),(2233,395,'_wp_attachment_context','custom-logo'),(2234,395,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:314;s:6:\"height\";i:313;s:4:\"file\";s:38:\"2023/03/cropped-We-Influence-Logo.webp\";s:8:\"filesize\";i:9022;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"cropped-We-Influence-Logo-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7934;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"cropped-We-Influence-Logo-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3760;}}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:{}}}'),(2241,399,'_wp_attached_file','2023/03/We-Influence-Site-Icon.png'),(2242,399,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:354;s:6:\"height\";i:354;s:4:\"file\";s:34:\"2023/03/We-Influence-Site-Icon.png\";s:8:\"filesize\";i:6488;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"We-Influence-Site-Icon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35543;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"We-Influence-Site-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13409;}}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:{}}}'),(2245,401,'_wp_attached_file','2023/03/cropped-We-Influence-Site-Icon.png'),(2246,401,'_wp_attachment_context','site-icon'),(2247,401,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:42:\"2023/03/cropped-We-Influence-Site-Icon.png\";s:8:\"filesize\";i:71147;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"cropped-We-Influence-Site-Icon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40927;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"cropped-We-Influence-Site-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14915;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:42:\"cropped-We-Influence-Site-Icon-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35999;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:42:\"cropped-We-Influence-Site-Icon-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20937;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:42:\"cropped-We-Influence-Site-Icon-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19477;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:40:\"cropped-We-Influence-Site-Icon-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1643;}}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:{}}}'),(2257,403,'_wp_page_template','elementor_header_footer'),(2258,403,'_elementor_edit_mode','builder'),(2259,403,'_elementor_template_type','wp-page'),(2260,403,'_elementor_version','3.10.2'),(2261,403,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2262,403,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2263,404,'_wp_page_template','elementor_header_footer'),(2264,404,'_elementor_edit_mode','builder'),(2265,404,'_elementor_template_type','wp-page'),(2266,404,'_elementor_version','3.10.2'),(2267,404,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=63068bb\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2268,404,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2269,405,'_wp_page_template','elementor_header_footer'),(2270,405,'_elementor_edit_mode','builder'),(2271,405,'_elementor_template_type','wp-page'),(2272,405,'_elementor_version','3.10.2'),(2273,405,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#904EFB\",\"hover_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\",\"form_submit_button_bg_color_normal\":\"#904EFB\",\"form_submit_button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"form_submit_button_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"form_submit_button_bg_color_hover\":\"#FFF1CE\",\"form_submit_button_text_color_hover\":\"#000000\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2274,405,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2276,406,'_wp_page_template','elementor_header_footer'),(2277,406,'_elementor_edit_mode','builder'),(2278,406,'_elementor_template_type','wp-page'),(2279,406,'_elementor_version','3.10.2'),(2280,406,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#904EFB\",\"hover_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\",\"form_submit_button_bg_color_normal\":\"#904EFB\",\"form_submit_button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"form_submit_button_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"form_submit_button_bg_color_hover\":\"#FFF1CE\",\"form_submit_button_text_color_hover\":\"#000000\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2281,406,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2282,407,'_wp_page_template','elementor_header_footer'),(2283,407,'_elementor_edit_mode','builder'),(2284,407,'_elementor_template_type','wp-page'),(2285,407,'_elementor_version','3.10.2');
INSERT INTO `wp_postmeta` VALUES (2286,407,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#904EFB\",\"hover_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\",\"form_submit_button_bg_color_normal\":\"#904EFB\",\"form_submit_button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"form_submit_button_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"form_submit_button_bg_color_hover\":\"#FFF1CE\",\"form_submit_button_text_color_hover\":\"#000000\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2287,407,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2288,408,'_wp_page_template','elementor_header_footer'),(2289,408,'_elementor_edit_mode','builder'),(2290,408,'_elementor_template_type','wp-page'),(2291,408,'_elementor_version','3.10.2'),(2292,408,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#904EFB\",\"hover_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\",\"form_submit_button_bg_color_normal\":\"#904EFB\",\"form_submit_button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"form_submit_button_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"form_submit_button_bg_color_hover\":\"#FFF1CE\",\"form_submit_button_text_color_hover\":\"#000000\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2293,408,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2295,409,'_wp_page_template','elementor_header_footer'),(2296,409,'_elementor_edit_mode','builder'),(2297,409,'_elementor_template_type','wp-page'),(2298,409,'_elementor_version','3.10.2'),(2299,409,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#904EFB\",\"hover_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\",\"form_submit_button_bg_color_normal\":\"#904EFB\",\"form_submit_button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"form_submit_button_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"form_submit_button_bg_color_hover\":\"#FFF1CE\",\"form_submit_button_text_color_hover\":\"#000000\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2300,409,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2301,410,'_wp_page_template','elementor_header_footer'),(2302,410,'_elementor_edit_mode','builder'),(2303,410,'_elementor_template_type','wp-page'),(2304,410,'_elementor_version','3.10.2'),(2305,410,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#904EFB\",\"hover_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\",\"form_submit_button_bg_color_normal\":\"#904EFB\",\"form_submit_button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"form_submit_button_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"form_submit_button_bg_color_hover\":\"#FFF1CE\",\"form_submit_button_text_color_hover\":\"#000000\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2306,410,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2307,411,'_wp_page_template','elementor_header_footer'),(2308,411,'_elementor_edit_mode','builder'),(2309,411,'_elementor_template_type','wp-page'),(2310,411,'_elementor_version','3.10.2'),(2311,411,'_elementor_data','[{\"id\":\"ccecc89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-x\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]}},\"elements\":[{\"id\":\"8a11864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"691e905\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"_background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/icon01.png\",\"id\":43,\"alt\":\"\",\"source\":\"library\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":48,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a8694\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":42,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero02.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":41,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon01.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"vw\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c20874\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":43,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon05.png\"},\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":\"-5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0b9061\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"3c5f68e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Boost Business With Influencer Marketing\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=32a7cf2\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_color\":\"#181B31\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"header_size\":\"h1\",\"_z_index\":1,\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":1.1000000000000001,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"509c9d5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c446e15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"typography_typography\":\"custom\",\"typography_font_family\":\"EB Garamond\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#904EFB\",\"hover_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b0d1d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ae32a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db66ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":40,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/hero01.png\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-12,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":45,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon02.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb3eaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"-3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31eba467\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":47,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg01.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=eeac0c6\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"42779b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd4bdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Can We Bring for You?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f79d1f6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62116747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec58739\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbb6d7d\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52c8fe1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":48,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon001.png\"},\"title_text\":\"Instagram\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"73035afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"75029a01\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ee71db2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon004.png\"},\"title_text\":\"Youtube\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7dd85087\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99ad97e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3aed950a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon005.png\"},\"title_text\":\"Twitter\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"_background_repeat_tablet\":\"no-repeat\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fd5290b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6d99db29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b4a16cc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"628665a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":54,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon006.png\"},\"title_text\":\"Facebook\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"d71e19e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"729a23bc\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"295a9276\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":55,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon003.png\"},\"title_text\":\"Celebrity Management\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"702ce63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57235c30\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text\":\"\",\"color\":\"#64677878\",\"text_color\":\"#646778\",\"text_align\":\"left\",\"text_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"-6\",\"left\":\"2\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"color\":\"\"},\"style\":\"slashes\",\"pattern_height\":{\"unit\":\"px\",\"size\":10.199999999999999,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":15.800000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"226a2160\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":57,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon002.png\"},\"title_text\":\"Unboxing With Creators\",\"description_text\":\"\",\"image_size\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"text_align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":3,\"blur\":15,\"spread\":7,\"color\":\"rgba(87.37907608695652, 86.41467391304346, 87.74999999999999, 0.06)\"},\"__globals__\":{\"_background_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=primary\",\"_border_color\":\"globals\\/colors?id=eeac0c6\"},\"_background_color\":\"#FFF8E74A\",\"hover_animation\":\"shrink\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#FAEDFF73\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"_background_position\":\"bottom center\",\"_background_size\":\"contain\",\"image_size_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_repeat\":\"repeat-x\",\"image_size_mobile\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df699c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#DDDDDD29\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#DDDDDD29\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_size\":\"cover\"},\"elements\":[{\"id\":\"7f27c6c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"47f83eae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Influencer Marketing?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2223118c\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b31e935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Amplify Your Brand Awareness<\\/li><li>Reach Your Target Audience<\\/li><li>Improve Your Credibility And Trust<\\/li><li>Revamp Your Content Strategy<\\/li><li>Increase Your Engagement<\\/li><li>Enhance Your Search Engine Rankings<\\/li><li>Boost Your Conversions<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b07754\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4090ff2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e640e3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon03.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68797845\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":58,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp01.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":59,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon06.png\"},\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e2b6622\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/icon04.png\"},\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7dc03408\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"bbe15e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ca8f49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the Perfect  Influencers <br>for Your Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357e76fc\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"38175b02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all\",\"align\":\"center\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=7679034\",\"button_background_hover_color\":\"\",\"border_color\":\"globals\\/colors?id=text\",\"button_hover_border_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#080915\",\"button_background_hover_color\":\"#FFF1CE00\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"background_color\":\"#904EFB00\",\"hover_color\":\"#080915\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfd5f88\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f61823b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":62,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp02.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/influence.1onestrong.com\\/wp-content\\/uploads\\/sites\\/13\\/2022\\/03\\/jp03.jpg\",\"id\":439,\"alt\":\"\",\"source\":\"library\"},\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"9eb329e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Growing Your Brand with influence Today\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d5d9df9\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23442265\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=7679034\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3074d6d2\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"b28df69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\"},\"elements\":[{\"id\":\"41504163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515f108\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"146b3709\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis\\u00a0 vitae, lacus tempus libero feugiat neque\\u00a0<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31f72817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"3c747b59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65be0638\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3233293f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"758222fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ba0e95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5ca8c6a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6aca6d\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"3be4d8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3437d497\",\"elType\":\"widget\",\"settings\":{\"title\":\"How does it work?\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5326d2c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f969ac8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 01\",\"description_text\":\"Create a Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"72454493\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"540aab2f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ac4a51\",\"elType\":\"widget\",\"settings\":{\"text\":\"Create your Campaign\",\"align\":\"left\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=c64725e\",\"background_color\":\"globals\\/colors?id=7679034\",\"hover_color\":\"globals\\/colors?id=349f2af\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#F7F9FB\",\"hover_animation\":\"shrink\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":800,\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73d98263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1191d90c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp04.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772b4459\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"61d3b8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fa8f141\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"39045fcd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"6f6d03fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"173a2985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp05.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"423813e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32d7c6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 02\",\"description_text\":\"Choose Influencers\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1eca80c6\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"242d964b\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"67d4c26e\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":752,\"sizes\":[]}},\"elements\":[{\"id\":\"58c6b580\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6cf5ba30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":66,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-194.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-10,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63819e8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"25e3b42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"56f5f74c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 03\",\"description_text\":\"Monitor Your Campaign\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1fec60f0\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39babd1f\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"710abd79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1f2ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":67,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp06.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47c14a8b\",\"elType\":\"section\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"31d3a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73f8dad3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-191.png\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"706d14b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]}},\"elements\":[{\"id\":\"5b7cfe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"5c159008\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":68,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/jp07.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":5,\"blur\":17,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"_animation\":\"fadeIn\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f0719f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"298ae309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Step 04\",\"description_text\":\"Check your report calmly\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=569b2c4\",\"title_typography_typography\":\"globals\\/typography?id=c64725e\",\"title_color\":\"globals\\/colors?id=7679034\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51f3afa\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"pattern_height\":{\"unit\":\"px\",\"size\":9.0999999999999996,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67c39f0e\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam\\u00a0 vitae, lacus tempus libero feugiat neque natoque quisque fames.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edac9fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00f93b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e389f87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Faces\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0498c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Bg.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.29999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"43c4bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":49,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-3.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"a454960\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2512578\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"948e7a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22e31f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8091006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natalie Portman\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f66ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"7b9a165\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"349b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-4.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"615c5a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"62c5e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a888c55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2caa2f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"a5638f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jamie Foxx\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"87eaea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"3df5923\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3538f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-5.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"ca99d98\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bf631e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c199cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e179748\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"146e89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nicolas Cage\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"acc118b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"228ca93\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de86f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":53,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/Group-6.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-5,\"vertical\":7,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=349f2af\"}},\"elements\":[{\"id\":\"f955320\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f954f9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio\\u00a0 malesuada rhoncus urna.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c962cb9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ca180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.643000000000001,\"_inline_size_tablet\":60,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"8617ecf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Julia Roberts\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ccefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.183999999999997,\"_inline_size_tablet\":40,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"356e65e\",\"elType\":\"widget\",\"settings\":{\"star_style\":\"star_unicode\",\"align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"stars_color\":\"#FFBF2A\"},\"elements\":[],\"widgetType\":\"star-rating\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"415935c7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":61,\"url\":\"https:\\/\\/weinfluence.saturnwp.link\\/wp-content\\/uploads\\/2022\\/09\\/border01.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56c21e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49765908\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d15501b\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d80c91\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"530f0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"88cbb78\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"3\",\"form_submit_button_bg_color_normal\":\"#904EFB\",\"form_submit_button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"form_submit_button_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"form_submit_button_bg_color_hover\":\"#FFF1CE\",\"form_submit_button_text_color_hover\":\"#000000\"},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":false}],\"isInner\":false}]'),(2312,411,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(2313,144,'_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:16;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:15;s:19:\"image_border_radius\";i:5;s:32:\"image_box_shadow_box_shadow_type\";i:4;s:27:\"image_box_shadow_box_shadow\";i:4;s:7:\"opacity\";i:3;}}s:8:\"advanced\";a:6:{s:18:\"_section_transform\";a:7:{s:28:\"_transform_translate_popover\";i:7;s:28:\"_transform_translateX_effect\";i:8;s:35:\"_transform_translateX_effect_tablet\";i:7;s:35:\"_transform_translateX_effect_mobile\";i:7;s:28:\"_transform_translateY_effect\";i:6;s:35:\"_transform_translateY_effect_tablet\";i:6;s:35:\"_transform_translateY_effect_mobile\";i:6;}s:19:\"_section_background\";a:5:{s:22:\"_background_background\";i:3;s:17:\"_background_image\";i:3;s:20:\"_background_position\";i:3;s:18:\"_background_repeat\";i:3;s:16:\"_background_size\";i:3;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:4;s:11:\"_mask_shape\";i:4;s:11:\"_mask_image\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:13;s:16:\"_animation_delay\";i:13;}s:14:\"_section_style\";a:3:{s:21:\"_element_width_mobile\";i:2;s:7:\"_margin\";i:8;s:8:\"_z_index\";i:2;}s:19:\"_section_responsive\";a:2:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:16:\"content_position\";i:9;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:9;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:5;s:19:\"background_position\";i:5;s:15:\"background_size\";i:5;s:17:\"background_repeat\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:5;s:26:\"box_shadow_box_shadow_type\";i:4;s:21:\"box_shadow_box_shadow\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:13;s:5:\"align\";i:9;s:11:\"header_size\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:3:{s:18:\"_section_transform\";a:4:{s:23:\"_transform_scale_effect\";i:1;s:24:\"_transform_scale_popover\";i:1;s:30:\"_transform_scale_effect_tablet\";i:1;s:30:\"_transform_scale_effect_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:9;s:16:\"_animation_delay\";i:9;}s:14:\"_section_style\";a:2:{s:8:\"_z_index\";i:1;s:7:\"_margin\";i:6;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:6;s:16:\"_animation_delay\";i:6;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:11;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:5;s:5:\"align\";i:5;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:17:\"button_text_color\";i:5;s:15:\"hover_animation\";i:5;s:13:\"border_radius\";i:5;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:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"text_padding\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:5;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:16;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:16;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:11;s:6:\"margin\";i:13;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:8;s:24:\"background_overlay_image\";i:8;s:27:\"background_overlay_position\";i:6;s:25:\"background_overlay_repeat\";i:5;s:23:\"background_overlay_size\";i:8;s:27:\"background_overlay_bg_width\";i:6;s:26:\"background_overlay_opacity\";i:7;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"style\";i:14;s:5:\"width\";i:8;s:5:\"align\";i:14;s:4:\"text\";i:6;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:4:{s:14:\"pattern_height\";i:14;s:3:\"gap\";i:8;s:5:\"color\";i:6;s:12:\"pattern_size\";i:6;}s:18:\"section_text_style\";a:3:{s:10:\"text_color\";i:6;s:10:\"text_align\";i:6;s:12:\"text_spacing\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:14;s:8:\"_z_index\";i:6;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:8;s:16:\"_animation_delay\";i:8;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translateX_effect\";i:6;s:35:\"_transform_translateX_effect_tablet\";i:6;s:35:\"_transform_translateX_effect_mobile\";i:6;s:28:\"_transform_translateY_effect\";i:6;s:35:\"_transform_translateY_effect_tablet\";i:6;s:35:\"_transform_translateY_effect_mobile\";i:6;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:10;s:10:\"title_text\";i:10;s:16:\"description_text\";i:10;}}s:5:\"style\";a:3:{s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:6;s:15:\"hover_animation\";i:6;}s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:10;}s:21:\"section_style_content\";a:1:{s:18:\"title_bottom_space\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:6;}s:19:\"_section_background\";a:8:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:6;s:28:\"_background_hover_background\";i:6;s:23:\"_background_hover_color\";i:6;s:17:\"_background_image\";i:6;s:20:\"_background_position\";i:6;s:16:\"_background_size\";i:6;s:18:\"_background_repeat\";i:6;}s:15:\"_section_border\";a:5:{s:14:\"_border_radius\";i:6;s:27:\"_box_shadow_box_shadow_type\";i:6;s:22:\"_box_shadow_box_shadow\";i:6;s:14:\"_border_border\";i:6;s:13:\"_border_width\";i:6;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:4:\"view\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:11:\"star-rating\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_rating\";a:2:{s:10:\"star_style\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_stars_style\";a:2:{s:9:\"icon_size\";i:4;s:11:\"stars_color\";i:4;}}}}s:18:\"fluent-form-widget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_fluent_form\";a:1:{s:9:\"form_list\";i:1;}}s:5:\"style\";a:1:{s:32:\"section_form_submit_button_style\";a:5:{s:34:\"form_submit_button_bg_color_normal\";i:1;s:32:\"form_submit_button_border_radius\";i:1;s:26:\"form_submit_button_padding\";i:1;s:33:\"form_submit_button_bg_color_hover\";i:1;s:35:\"form_submit_button_text_color_hover\";i:1;}}}}}'),(2318,278,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:11;s:5:\"align\";i:11;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:7;s:16:\"_animation_delay\";i:7;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:6;s:5:\"width\";i:5;s:5:\"align\";i:5;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:5;s:3:\"gap\";i:5;}s:18:\"section_text_style\";a:1:{s:12:\"text_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:5;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:34;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:34;s:16:\"content_position\";i:12;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:15;s:6:\"margin\";i:17;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:7:{s:21:\"background_background\";i:14;s:16:\"background_image\";i:14;s:19:\"background_position\";i:14;s:17:\"background_repeat\";i:14;s:15:\"background_size\";i:14;s:16:\"background_color\";i:3;s:19:\"background_bg_width\";i:3;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:13;s:26:\"box_shadow_box_shadow_type\";i:10;s:21:\"box_shadow_box_shadow\";i:10;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:22;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:21;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:16;s:8:\"_z_index\";i:5;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:15;s:16:\"_animation_delay\";i:15;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translateX_effect\";i:9;s:28:\"_transform_translate_popover\";i:4;s:35:\"_transform_translateX_effect_tablet\";i:5;s:35:\"_transform_translateX_effect_mobile\";i:5;s:28:\"_transform_translateY_effect\";i:4;s:35:\"_transform_translateY_effect_tablet\";i:4;s:35:\"_transform_translateY_effect_mobile\";i:4;}s:19:\"_section_background\";a:5:{s:22:\"_background_background\";i:4;s:17:\"_background_image\";i:4;s:20:\"_background_position\";i:4;s:18:\"_background_repeat\";i:4;s:16:\"_background_size\";i:4;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:11;s:11:\"_mask_shape\";i:5;s:11:\"_mask_image\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:6;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:16:\"background_color\";i:2;s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:3;s:27:\"background_overlay_position\";i:2;s:25:\"background_overlay_repeat\";i:2;s:23:\"background_overlay_size\";i:3;s:27:\"background_overlay_bg_width\";i:2;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:12;}}}}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:2:{s:6:\"editor\";i:2;s:12:\"text_columns\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:9;s:10:\"title_text\";i:9;s:16:\"description_text\";i:9;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:9;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:34:\"description_typography_font_family\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_font_weight\";i:3;s:37:\"description_typography_text_transform\";i:3;s:34:\"description_typography_line_height\";i:3;s:35:\"description_typography_word_spacing\";i:3;}s:17:\"section_style_box\";a:1:{s:8:\"position\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:17:\"button_text_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:15:\"hover_animation\";i:3;s:13:\"border_radius\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"text_padding\";i:3;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}}'),(2319,174,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:2;s:5:\"width\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:1;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:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}}}}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:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}'),(2320,161,'_elementor_controls_usage','a:7:{s:6:\"spacer\";a:3:{s:5:\"count\";i:2;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:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:2;s:5:\"width\";i:3;s:5:\"align\";i:3;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:3:{s:14:\"pattern_height\";i:2;s:3:\"gap\";i:2;s:5:\"color\";i:1;}s:18:\"section_text_style\";a:10:{s:10:\"text_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:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;s:12:\"text_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:16:\"content_position\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:1;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:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:26:\"background_overlay_opacity\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}}}}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:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:4:{s:22:\"css_filters_css_filter\";i:1;s:22:\"css_filters_brightness\";i:1;s:20:\"css_filters_contrast\";i:1;s:20:\"css_filters_saturate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(2321,103,'_elementor_controls_usage','a:7:{s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:2;s:5:\"width\";i:3;s:5:\"align\";i:3;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:3:{s:14:\"pattern_height\";i:2;s:3:\"gap\";i:2;s:5:\"color\";i:1;}s:18:\"section_text_style\";a:10:{s:10:\"text_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:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:23:\"typography_word_spacing\";i:1;s:12:\"text_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:16:\"content_position\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:16:\"background_image\";i:9;s:25:\"background_video_fallback\";i:9;s:22:\"background_hover_image\";i:9;s:31:\"background_hover_video_fallback\";i:9;s:21:\"background_background\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:9;s:33:\"background_overlay_video_fallback\";i:9;s:30:\"background_overlay_hover_image\";i:9;s:39:\"background_overlay_hover_video_fallback\";i:9;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:6;s:25:\"background_video_fallback\";i:6;s:22:\"background_hover_image\";i:6;s:31:\"background_hover_video_fallback\";i:6;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:6;s:33:\"background_overlay_video_fallback\";i:6;s:30:\"background_overlay_hover_image\";i:6;s:39:\"background_overlay_hover_video_fallback\";i:6;s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:4:{s:22:\"css_filters_css_filter\";i:1;s:22:\"css_filters_brightness\";i:1;s:20:\"css_filters_contrast\";i:1;s:20:\"css_filters_saturate\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}}'),(2322,97,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"divider\";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_divider\";a:3:{s:5:\"style\";i:2;s:5:\"width\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:16:\"content_position\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:16:\"background_image\";i:4;s:25:\"background_video_fallback\";i:4;s:22:\"background_hover_image\";i:4;s:31:\"background_hover_video_fallback\";i:4;s:21:\"background_background\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:4;s:33:\"background_overlay_video_fallback\";i:4;s:30:\"background_overlay_hover_image\";i:4;s:39:\"background_overlay_hover_video_fallback\";i:4;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:3;s:25:\"background_video_fallback\";i:3;s:22:\"background_hover_image\";i:3;s:31:\"background_hover_video_fallback\";i:3;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:10:{s:24:\"background_overlay_image\";i:3;s:33:\"background_overlay_video_fallback\";i:3;s:30:\"background_overlay_hover_image\";i:3;s:39:\"background_overlay_hover_video_fallback\";i:3;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}'),(2323,99,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:5:\"align\";i:6;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:7;s:26:\"_background_video_fallback\";i:7;s:23:\"_background_hover_image\";i:7;s:32:\"_background_hover_video_fallback\";i:7;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:7;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:2;s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:11;s:16:\"content_position\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:16:\"background_image\";i:11;s:25:\"background_video_fallback\";i:11;s:22:\"background_hover_image\";i:11;s:31:\"background_hover_video_fallback\";i:11;s:21:\"background_background\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:11;s:33:\"background_overlay_video_fallback\";i:11;s:30:\"background_overlay_hover_image\";i:11;s:39:\"background_overlay_hover_video_fallback\";i:11;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:6;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:8;s:25:\"background_video_fallback\";i:8;s:22:\"background_hover_image\";i:8;s:31:\"background_hover_video_fallback\";i:8;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:8;s:33:\"background_overlay_video_fallback\";i:8;s:30:\"background_overlay_hover_image\";i:8;s:39:\"background_overlay_hover_video_fallback\";i:8;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:5;s:12:\"text_columns\";i:2;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:5;s:26:\"_background_video_fallback\";i:5;s:23:\"_background_hover_image\";i:5;s:32:\"_background_hover_video_fallback\";i:5;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:5;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:13:\"image-gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:3:{s:10:\"wp_gallery\";i:1;s:14:\"thumbnail_size\";i:1;s:15:\"gallery_columns\";i:1;}}s:5:\"style\";a:1:{s:22:\"section_gallery_images\";a:3:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:5:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:4:\"view\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:2:{s:8:\"position\";i:3;s:26:\"content_vertical_alignment\";i:3;}s:18:\"section_style_icon\";a:4:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:13:\"primary_color\";i:3;s:15:\"secondary_color\";i:3;}s:21:\"section_style_content\";a:3:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:17:\"description_color\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:4:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}}'),(2324,93,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:5:\"align\";i:3;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:7;s:26:\"_background_video_fallback\";i:7;s:23:\"_background_hover_image\";i:7;s:32:\"_background_hover_video_fallback\";i:7;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:7;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:1;s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:16;s:16:\"content_position\";i:2;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:8:{s:16:\"background_image\";i:16;s:25:\"background_video_fallback\";i:16;s:22:\"background_hover_image\";i:16;s:31:\"background_hover_video_fallback\";i:16;s:21:\"background_background\";i:5;s:19:\"background_position\";i:5;s:17:\"background_repeat\";i:5;s:15:\"background_size\";i:5;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:16;s:33:\"background_overlay_video_fallback\";i:16;s:30:\"background_overlay_hover_image\";i:16;s:39:\"background_overlay_hover_video_fallback\";i:16;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:4;s:26:\"box_shadow_box_shadow_type\";i:4;s:21:\"box_shadow_box_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:8;s:25:\"background_video_fallback\";i:8;s:22:\"background_hover_image\";i:8;s:31:\"background_hover_video_fallback\";i:8;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:8:{s:24:\"background_overlay_image\";i:8;s:33:\"background_overlay_video_fallback\";i:8;s:30:\"background_overlay_hover_image\";i:8;s:39:\"background_overlay_hover_video_fallback\";i:8;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:4:\"view\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:11:\"star-rating\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_rating\";a:2:{s:10:\"star_style\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_stars_style\";a:2:{s:9:\"icon_size\";i:4;s:11:\"stars_color\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}'),(2325,95,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"divider\";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_divider\";a:3:{s:5:\"style\";i:2;s:5:\"width\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:10;s:16:\"content_position\";i:2;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:8:{s:16:\"background_image\";i:10;s:25:\"background_video_fallback\";i:10;s:22:\"background_hover_image\";i:10;s:31:\"background_hover_video_fallback\";i:10;s:21:\"background_background\";i:7;s:19:\"background_position\";i:7;s:17:\"background_repeat\";i:7;s:15:\"background_size\";i:7;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:10;s:33:\"background_overlay_video_fallback\";i:10;s:30:\"background_overlay_hover_image\";i:10;s:39:\"background_overlay_hover_video_fallback\";i:10;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:6;s:26:\"box_shadow_box_shadow_type\";i:6;s:21:\"box_shadow_box_shadow\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:8;s:6:\"margin\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:7;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:7;s:26:\"_background_video_fallback\";i:7;s:23:\"_background_hover_image\";i:7;s:32:\"_background_hover_video_fallback\";i:7;}s:16:\"_section_masking\";a:2:{s:11:\"_mask_image\";i:7;s:12:\"_mask_switch\";i:6;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:5;s:25:\"background_video_fallback\";i:5;s:22:\"background_hover_image\";i:5;s:31:\"background_hover_video_fallback\";i:5;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:5;s:33:\"background_overlay_video_fallback\";i:5;s:30:\"background_overlay_hover_image\";i:5;s:39:\"background_overlay_hover_video_fallback\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:1:{s:18:\"title_bottom_space\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:6;s:26:\"_background_video_fallback\";i:6;s:23:\"_background_hover_image\";i:6;s:32:\"_background_hover_video_fallback\";i:6;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:6;}}}}}'),(2326,82,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:5:\"align\";i:6;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:6;s:16:\"_animation_delay\";i:6;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:6;s:26:\"_background_video_fallback\";i:6;s:23:\"_background_hover_image\";i:6;s:32:\"_background_hover_video_fallback\";i:6;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:6;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:7;s:5:\"width\";i:7;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:7;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:7;s:16:\"_animation_delay\";i:7;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:7;s:26:\"_background_video_fallback\";i:7;s:23:\"_background_hover_image\";i:7;s:32:\"_background_hover_video_fallback\";i:7;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:7;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:25;s:16:\"content_position\";i:11;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:8:{s:16:\"background_image\";i:25;s:25:\"background_video_fallback\";i:25;s:22:\"background_hover_image\";i:25;s:31:\"background_hover_video_fallback\";i:25;s:21:\"background_background\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:2;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:25;s:33:\"background_overlay_video_fallback\";i:25;s:30:\"background_overlay_hover_image\";i:25;s:39:\"background_overlay_hover_video_fallback\";i:25;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:6:\"margin\";i:7;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:8;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:8;s:19:\"image_border_radius\";i:4;s:32:\"image_box_shadow_box_shadow_type\";i:4;s:27:\"image_box_shadow_box_shadow\";i:4;s:7:\"opacity\";i:3;}}s:8:\"advanced\";a:5:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:8;s:26:\"_background_video_fallback\";i:8;s:23:\"_background_hover_image\";i:8;s:32:\"_background_hover_video_fallback\";i:8;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:8;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:16:\"_animation_delay\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translate_popover\";i:3;s:28:\"_transform_translateX_effect\";i:3;s:35:\"_transform_translateX_effect_tablet\";i:3;s:35:\"_transform_translateX_effect_mobile\";i:3;s:28:\"_transform_translateY_effect\";i:3;s:35:\"_transform_translateY_effect_tablet\";i:3;s:35:\"_transform_translateY_effect_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:15;s:25:\"background_video_fallback\";i:15;s:22:\"background_hover_image\";i:15;s:31:\"background_hover_video_fallback\";i:15;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:10:{s:24:\"background_overlay_image\";i:15;s:33:\"background_overlay_video_fallback\";i:15;s:30:\"background_overlay_hover_image\";i:15;s:39:\"background_overlay_hover_video_fallback\";i:15;s:29:\"background_overlay_background\";i:3;s:27:\"background_overlay_position\";i:2;s:25:\"background_overlay_repeat\";i:3;s:23:\"background_overlay_size\";i:3;s:27:\"background_overlay_bg_width\";i:3;s:26:\"background_overlay_opacity\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:9;s:7:\"padding\";i:3;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:4;}s:21:\"section_style_content\";a:1:{s:18:\"title_bottom_space\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:16:\"_animation_delay\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:3;s:15:\"hover_animation\";i:3;s:13:\"border_radius\";i:3;s:25:\"background_video_fallback\";i:3;s:38:\"button_background_hover_video_fallback\";i:3;s:29:\"button_background_hover_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"text_padding\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}}}}}'),(2327,84,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:5;s:5:\"width\";i:5;s:5:\"align\";i:5;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:5;s:3:\"gap\";i:5;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:5;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:5;s:26:\"_background_video_fallback\";i:5;s:23:\"_background_hover_image\";i:5;s:32:\"_background_hover_video_fallback\";i:5;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:19;s:16:\"content_position\";i:5;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:10:{s:16:\"background_image\";i:19;s:25:\"background_video_fallback\";i:19;s:22:\"background_hover_image\";i:19;s:31:\"background_hover_video_fallback\";i:19;s:21:\"background_background\";i:4;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:4;s:16:\"background_color\";i:3;s:19:\"background_bg_width\";i:3;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:19;s:33:\"background_overlay_video_fallback\";i:19;s:30:\"background_overlay_hover_image\";i:19;s:39:\"background_overlay_hover_video_fallback\";i:19;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:8;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:8;s:19:\"image_border_radius\";i:4;s:32:\"image_box_shadow_box_shadow_type\";i:4;s:27:\"image_box_shadow_box_shadow\";i:4;s:7:\"opacity\";i:3;}}s:8:\"advanced\";a:5:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:8;s:26:\"_background_video_fallback\";i:8;s:23:\"_background_hover_image\";i:8;s:32:\"_background_hover_video_fallback\";i:8;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:8;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:16:\"_animation_delay\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translate_popover\";i:3;s:28:\"_transform_translateX_effect\";i:3;s:35:\"_transform_translateX_effect_tablet\";i:3;s:35:\"_transform_translateX_effect_mobile\";i:3;s:28:\"_transform_translateY_effect\";i:3;s:35:\"_transform_translateY_effect_tablet\";i:3;s:35:\"_transform_translateY_effect_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:12;s:25:\"background_video_fallback\";i:12;s:22:\"background_hover_image\";i:12;s:31:\"background_hover_video_fallback\";i:12;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:10:{s:24:\"background_overlay_image\";i:12;s:33:\"background_overlay_video_fallback\";i:12;s:30:\"background_overlay_hover_image\";i:12;s:39:\"background_overlay_hover_video_fallback\";i:12;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:6;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:7;s:10:\"title_text\";i:7;s:16:\"description_text\";i:7;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:2:{s:10:\"text_align\";i:4;s:8:\"position\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:7;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:34:\"description_typography_font_family\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_font_weight\";i:3;s:37:\"description_typography_text_transform\";i:3;s:34:\"description_typography_line_height\";i:3;s:35:\"description_typography_word_spacing\";i:3;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:7;s:26:\"_background_video_fallback\";i:7;s:23:\"_background_hover_image\";i:7;s:32:\"_background_hover_video_fallback\";i:7;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:7;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:16:\"_animation_delay\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:4;s:5:\"align\";i:4;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:4;s:15:\"hover_animation\";i:4;s:13:\"border_radius\";i:4;s:25:\"background_video_fallback\";i:4;s:38:\"button_background_hover_video_fallback\";i:4;s:29:\"button_background_hover_color\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"text_padding\";i:3;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:16:\"_animation_delay\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}'),(2328,86,'_elementor_controls_usage','a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:5:\"align\";i:2;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:18:\"_section_transform\";a:2:{s:24:\"_transform_scale_popover\";i:1;s:23:\"_transform_scale_effect\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"text_padding\";i:1;s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:26:\"section_background_overlay\";a:10:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;s:26:\"background_overlay_opacity\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:1;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:19:\"background_bg_width\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"height\";i:1;}}}}}'),(2329,88,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:1;s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:2;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:10:{s:16:\"background_image\";i:8;s:25:\"background_video_fallback\";i:8;s:22:\"background_hover_image\";i:8;s:31:\"background_hover_video_fallback\";i:8;s:21:\"background_background\";i:4;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:4;s:16:\"background_color\";i:3;s:19:\"background_bg_width\";i:3;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:8;s:33:\"background_overlay_video_fallback\";i:8;s:30:\"background_overlay_hover_image\";i:8;s:39:\"background_overlay_hover_video_fallback\";i:8;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:5;s:25:\"background_video_fallback\";i:5;s:22:\"background_hover_image\";i:5;s:31:\"background_hover_video_fallback\";i:5;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:10:{s:24:\"background_overlay_image\";i:5;s:33:\"background_overlay_video_fallback\";i:5;s:30:\"background_overlay_hover_image\";i:5;s:39:\"background_overlay_hover_video_fallback\";i:5;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:1:{s:8:\"position\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:34:\"description_typography_font_family\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_font_weight\";i:3;s:37:\"description_typography_text_transform\";i:3;s:34:\"description_typography_line_height\";i:3;s:35:\"description_typography_word_spacing\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:15:\"hover_animation\";i:3;s:13:\"border_radius\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"text_padding\";i:3;s:25:\"background_video_fallback\";i:3;s:38:\"button_background_hover_video_fallback\";i:3;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}}}}}'),(2330,90,'_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:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:5:\"align\";i:5;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:16:\"_animation_delay\";i:4;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:5;s:26:\"_background_video_fallback\";i:5;s:23:\"_background_hover_image\";i:5;s:32:\"_background_hover_video_fallback\";i:5;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:5;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"divider\";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_divider\";a:3:{s:5:\"style\";i:2;s:5:\"width\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:17;s:16:\"content_position\";i:4;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:16:\"background_image\";i:17;s:25:\"background_video_fallback\";i:17;s:22:\"background_hover_image\";i:17;s:31:\"background_hover_video_fallback\";i:17;s:21:\"background_background\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:17;s:33:\"background_overlay_video_fallback\";i:17;s:30:\"background_overlay_hover_image\";i:17;s:39:\"background_overlay_hover_video_fallback\";i:17;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:7;s:25:\"background_video_fallback\";i:7;s:22:\"background_hover_image\";i:7;s:31:\"background_hover_video_fallback\";i:7;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:10:{s:24:\"background_overlay_image\";i:7;s:33:\"background_overlay_video_fallback\";i:7;s:30:\"background_overlay_hover_image\";i:7;s:39:\"background_overlay_hover_video_fallback\";i:7;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:2;s:29:\"button_background_hover_color\";i:1;s:15:\"hover_animation\";i:2;s:13:\"border_radius\";i:2;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"text_padding\";i:1;s:25:\"background_video_fallback\";i:2;s:38:\"button_background_hover_video_fallback\";i:2;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(2331,70,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:11;s:5:\"align\";i:11;}}s:8:\"advanced\";a:5:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:7;s:16:\"_animation_delay\";i:7;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:11;s:26:\"_background_video_fallback\";i:11;s:23:\"_background_hover_image\";i:11;s:32:\"_background_hover_video_fallback\";i:11;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:11;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:6;s:5:\"width\";i:5;s:5:\"align\";i:5;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:14:\"pattern_height\";i:5;s:3:\"gap\";i:5;}s:18:\"section_text_style\";a:1:{s:12:\"text_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:5;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:6;s:26:\"_background_video_fallback\";i:6;s:23:\"_background_hover_image\";i:6;s:32:\"_background_hover_video_fallback\";i:6;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:34;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:34;s:16:\"content_position\";i:12;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:10:{s:16:\"background_image\";i:34;s:25:\"background_video_fallback\";i:34;s:22:\"background_hover_image\";i:34;s:31:\"background_hover_video_fallback\";i:34;s:21:\"background_background\";i:14;s:19:\"background_position\";i:14;s:17:\"background_repeat\";i:14;s:15:\"background_size\";i:14;s:16:\"background_color\";i:3;s:19:\"background_bg_width\";i:3;}s:26:\"section_background_overlay\";a:9:{s:24:\"background_overlay_image\";i:34;s:33:\"background_overlay_video_fallback\";i:34;s:30:\"background_overlay_hover_image\";i:34;s:39:\"background_overlay_hover_video_fallback\";i:34;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:13;s:26:\"box_shadow_box_shadow_type\";i:10;s:21:\"box_shadow_box_shadow\";i:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:15;s:6:\"margin\";i:17;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:22;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:21;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:5:{s:19:\"_section_background\";a:8:{s:17:\"_background_image\";i:22;s:26:\"_background_video_fallback\";i:22;s:23:\"_background_hover_image\";i:22;s:32:\"_background_hover_video_fallback\";i:22;s:22:\"_background_background\";i:4;s:20:\"_background_position\";i:4;s:18:\"_background_repeat\";i:4;s:16:\"_background_size\";i:4;}s:16:\"_section_masking\";a:3:{s:11:\"_mask_image\";i:22;s:12:\"_mask_switch\";i:11;s:11:\"_mask_shape\";i:5;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:16;s:8:\"_z_index\";i:5;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:15;s:16:\"_animation_delay\";i:15;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translateX_effect\";i:9;s:28:\"_transform_translate_popover\";i:4;s:35:\"_transform_translateX_effect_tablet\";i:5;s:35:\"_transform_translateX_effect_mobile\";i:5;s:28:\"_transform_translateY_effect\";i:4;s:35:\"_transform_translateY_effect_tablet\";i:4;s:35:\"_transform_translateY_effect_mobile\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:6;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:10:{s:16:\"background_image\";i:15;s:25:\"background_video_fallback\";i:15;s:22:\"background_hover_image\";i:15;s:31:\"background_hover_video_fallback\";i:15;s:16:\"background_color\";i:2;s:21:\"background_background\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:26:\"section_background_overlay\";a:10:{s:24:\"background_overlay_image\";i:15;s:33:\"background_overlay_video_fallback\";i:15;s:30:\"background_overlay_hover_image\";i:15;s:39:\"background_overlay_hover_video_fallback\";i:15;s:29:\"background_overlay_background\";i:3;s:27:\"background_overlay_position\";i:2;s:25:\"background_overlay_repeat\";i:2;s:23:\"background_overlay_size\";i:3;s:27:\"background_overlay_bg_width\";i:2;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:12;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:2;s:12:\"text_columns\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:9;s:10:\"title_text\";i:9;s:16:\"description_text\";i:9;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:9;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:34:\"description_typography_font_family\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_font_weight\";i:3;s:37:\"description_typography_text_transform\";i:3;s:34:\"description_typography_line_height\";i:3;s:35:\"description_typography_word_spacing\";i:3;}s:17:\"section_style_box\";a:1:{s:8:\"position\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:9;s:26:\"_background_video_fallback\";i:9;s:23:\"_background_hover_image\";i:9;s:32:\"_background_hover_video_fallback\";i:9;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:9;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:15:\"hover_animation\";i:3;s:13:\"border_radius\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"text_padding\";i:3;s:25:\"background_video_fallback\";i:3;s:38:\"button_background_hover_video_fallback\";i:3;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}}}}}'),(2332,35,'_elementor_controls_usage','a:2:{s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:6;s:25:\"background_video_fallback\";i:6;s:22:\"background_hover_image\";i:6;s:31:\"background_hover_video_fallback\";i:6;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:6;s:33:\"background_overlay_video_fallback\";i:6;s:30:\"background_overlay_hover_image\";i:6;s:39:\"background_overlay_hover_video_fallback\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:5:{s:16:\"background_image\";i:4;s:25:\"background_video_fallback\";i:4;s:22:\"background_hover_image\";i:4;s:31:\"background_hover_video_fallback\";i:4;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:4;s:33:\"background_overlay_video_fallback\";i:4;s:30:\"background_overlay_hover_image\";i:4;s:39:\"background_overlay_hover_video_fallback\";i:4;}s:14:\"section_border\";a:2:{s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}}'),(2333,37,'_elementor_controls_usage','a:2:{s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}}'),(2334,39,'_elementor_controls_usage','a:10:{s:5:\"image\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:16;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:15;s:19:\"image_border_radius\";i:5;s:32:\"image_box_shadow_box_shadow_type\";i:4;s:27:\"image_box_shadow_box_shadow\";i:4;s:7:\"opacity\";i:3;}}s:8:\"advanced\";a:6:{s:18:\"_section_transform\";a:7:{s:28:\"_transform_translate_popover\";i:7;s:28:\"_transform_translateX_effect\";i:8;s:35:\"_transform_translateX_effect_tablet\";i:7;s:35:\"_transform_translateX_effect_mobile\";i:7;s:28:\"_transform_translateY_effect\";i:6;s:35:\"_transform_translateY_effect_tablet\";i:6;s:35:\"_transform_translateY_effect_mobile\";i:6;}s:19:\"_section_background\";a:8:{s:22:\"_background_background\";i:3;s:17:\"_background_image\";i:16;s:20:\"_background_position\";i:3;s:18:\"_background_repeat\";i:3;s:16:\"_background_size\";i:3;s:26:\"_background_video_fallback\";i:16;s:23:\"_background_hover_image\";i:16;s:32:\"_background_hover_video_fallback\";i:16;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:4;s:11:\"_mask_shape\";i:4;s:11:\"_mask_image\";i:16;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:13;s:16:\"_animation_delay\";i:13;}s:14:\"_section_style\";a:3:{s:21:\"_element_width_mobile\";i:2;s:7:\"_margin\";i:8;s:8:\"_z_index\";i:2;}s:19:\"_section_responsive\";a:2:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:16:\"content_position\";i:9;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:8:{s:16:\"background_image\";i:45;s:25:\"background_video_fallback\";i:45;s:22:\"background_hover_image\";i:45;s:31:\"background_hover_video_fallback\";i:45;s:21:\"background_background\";i:5;s:19:\"background_position\";i:5;s:15:\"background_size\";i:5;s:17:\"background_repeat\";i:4;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:45;s:33:\"background_overlay_video_fallback\";i:45;s:30:\"background_overlay_hover_image\";i:45;s:39:\"background_overlay_hover_video_fallback\";i:45;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:5;s:26:\"box_shadow_box_shadow_type\";i:4;s:21:\"box_shadow_box_shadow\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:9;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:12;s:5:\"align\";i:8;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:5:{s:18:\"_section_transform\";a:4:{s:23:\"_transform_scale_effect\";i:1;s:24:\"_transform_scale_popover\";i:1;s:30:\"_transform_scale_effect_tablet\";i:1;s:30:\"_transform_scale_effect_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:8;s:16:\"_animation_delay\";i:8;}s:14:\"_section_style\";a:2:{s:8:\"_z_index\";i:1;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:12;s:26:\"_background_video_fallback\";i:12;s:23:\"_background_hover_image\";i:12;s:32:\"_background_hover_video_fallback\";i:12;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:12;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:7;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:7;s:16:\"_animation_delay\";i:7;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:11;s:26:\"_background_video_fallback\";i:11;s:23:\"_background_hover_image\";i:11;s:32:\"_background_hover_video_fallback\";i:11;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:11;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:11;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:5;s:5:\"align\";i:5;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:5;s:15:\"hover_animation\";i:5;s:13:\"border_radius\";i:5;s:25:\"background_video_fallback\";i:5;s:38:\"button_background_hover_video_fallback\";i:5;s:29:\"button_background_hover_color\";i:2;s:16:\"background_color\";i:2;s:11:\"hover_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"text_padding\";i:2;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:5;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:5;s:26:\"_background_video_fallback\";i:5;s:23:\"_background_hover_image\";i:5;s:32:\"_background_hover_video_fallback\";i:5;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:5;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:24;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:16;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:11;s:6:\"margin\";i:12;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:24;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:25:\"background_video_fallback\";i:24;s:22:\"background_hover_image\";i:24;s:31:\"background_hover_video_fallback\";i:24;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:10:{s:29:\"background_overlay_background\";i:8;s:24:\"background_overlay_image\";i:24;s:27:\"background_overlay_position\";i:6;s:25:\"background_overlay_repeat\";i:5;s:23:\"background_overlay_size\";i:8;s:27:\"background_overlay_bg_width\";i:6;s:26:\"background_overlay_opacity\";i:7;s:33:\"background_overlay_video_fallback\";i:24;s:30:\"background_overlay_hover_image\";i:24;s:39:\"background_overlay_hover_video_fallback\";i:24;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"style\";i:14;s:5:\"width\";i:8;s:5:\"align\";i:14;s:4:\"text\";i:6;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:4:{s:14:\"pattern_height\";i:14;s:3:\"gap\";i:8;s:5:\"color\";i:6;s:12:\"pattern_size\";i:6;}s:18:\"section_text_style\";a:3:{s:10:\"text_color\";i:6;s:10:\"text_align\";i:6;s:12:\"text_spacing\";i:6;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:14;s:8:\"_z_index\";i:6;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:8;s:16:\"_animation_delay\";i:8;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:14;s:26:\"_background_video_fallback\";i:14;s:23:\"_background_hover_image\";i:14;s:32:\"_background_hover_video_fallback\";i:14;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:14;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translateX_effect\";i:6;s:35:\"_transform_translateX_effect_tablet\";i:6;s:35:\"_transform_translateX_effect_mobile\";i:6;s:28:\"_transform_translateY_effect\";i:6;s:35:\"_transform_translateY_effect_tablet\";i:6;s:35:\"_transform_translateY_effect_mobile\";i:6;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:10;s:10:\"title_text\";i:10;s:16:\"description_text\";i:10;}}s:5:\"style\";a:3:{s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:6;s:15:\"hover_animation\";i:6;}s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:10;}s:21:\"section_style_content\";a:1:{s:18:\"title_bottom_space\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:6;}s:19:\"_section_background\";a:11:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:6;s:28:\"_background_hover_background\";i:6;s:23:\"_background_hover_color\";i:6;s:17:\"_background_image\";i:10;s:20:\"_background_position\";i:6;s:16:\"_background_size\";i:6;s:18:\"_background_repeat\";i:6;s:26:\"_background_video_fallback\";i:10;s:23:\"_background_hover_image\";i:10;s:32:\"_background_hover_video_fallback\";i:10;}s:15:\"_section_border\";a:5:{s:14:\"_border_radius\";i:6;s:27:\"_box_shadow_box_shadow_type\";i:6;s:22:\"_box_shadow_box_shadow\";i:6;s:14:\"_border_border\";i:6;s:13:\"_border_width\";i:6;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:10;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:4:\"view\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}s:11:\"star-rating\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_rating\";a:2:{s:10:\"star_style\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_stars_style\";a:2:{s:9:\"icon_size\";i:4;s:11:\"stars_color\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}'),(2335,30,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:4;s:11:\"_mask_shape\";i:4;s:11:\"_mask_image\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:8;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:4;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:16:\"background_image\";i:12;s:25:\"background_video_fallback\";i:12;s:22:\"background_hover_image\";i:12;s:31:\"background_hover_video_fallback\";i:12;s:21:\"background_background\";i:4;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:12;s:33:\"background_overlay_video_fallback\";i:12;s:30:\"background_overlay_hover_image\";i:12;s:39:\"background_overlay_hover_video_fallback\";i:12;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:4;s:26:\"box_shadow_box_shadow_type\";i:4;s:21:\"box_shadow_box_shadow\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:5;s:25:\"background_video_fallback\";i:5;s:22:\"background_hover_image\";i:5;s:31:\"background_hover_video_fallback\";i:5;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:5;s:33:\"background_overlay_video_fallback\";i:5;s:30:\"background_overlay_hover_image\";i:5;s:39:\"background_overlay_hover_video_fallback\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:1:{s:11:\"image_space\";i:4;}s:21:\"section_style_content\";a:1:{s:18:\"title_bottom_space\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}'),(2336,24,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:4;s:11:\"_mask_shape\";i:4;s:11:\"_mask_image\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:8;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:4;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:16:\"background_image\";i:12;s:25:\"background_video_fallback\";i:12;s:22:\"background_hover_image\";i:12;s:31:\"background_hover_video_fallback\";i:12;s:21:\"background_background\";i:4;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:12;s:33:\"background_overlay_video_fallback\";i:12;s:30:\"background_overlay_hover_image\";i:12;s:39:\"background_overlay_hover_video_fallback\";i:12;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:4;s:26:\"box_shadow_box_shadow_type\";i:4;s:21:\"box_shadow_box_shadow\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:5;s:25:\"background_video_fallback\";i:5;s:22:\"background_hover_image\";i:5;s:31:\"background_hover_video_fallback\";i:5;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:5;s:33:\"background_overlay_video_fallback\";i:5;s:30:\"background_overlay_hover_image\";i:5;s:39:\"background_overlay_hover_video_fallback\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:1:{s:11:\"image_space\";i:4;}s:21:\"section_style_content\";a:1:{s:18:\"title_bottom_space\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}'),(2337,17,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:4;s:11:\"_mask_shape\";i:4;s:11:\"_mask_image\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:8;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:4;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:16:\"background_image\";i:12;s:25:\"background_video_fallback\";i:12;s:22:\"background_hover_image\";i:12;s:31:\"background_hover_video_fallback\";i:12;s:21:\"background_background\";i:4;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:12;s:33:\"background_overlay_video_fallback\";i:12;s:30:\"background_overlay_hover_image\";i:12;s:39:\"background_overlay_hover_video_fallback\";i:12;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:4;s:26:\"box_shadow_box_shadow_type\";i:4;s:21:\"box_shadow_box_shadow\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:5;s:25:\"background_video_fallback\";i:5;s:22:\"background_hover_image\";i:5;s:31:\"background_hover_video_fallback\";i:5;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:5;s:33:\"background_overlay_video_fallback\";i:5;s:30:\"background_overlay_hover_image\";i:5;s:39:\"background_overlay_hover_video_fallback\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:1:{s:11:\"image_space\";i:4;}s:21:\"section_style_content\";a:1:{s:18:\"title_bottom_space\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}}}}}'),(2338,12,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}s:16:\"_section_masking\";a:3:{s:11:\"_mask_shape\";i:2;s:11:\"_mask_image\";i:3;s:16:\"_mask_size_scale\";i:2;}s:19:\"_section_background\";a:5:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;s:17:\"_background_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:5:\"align\";i:3;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:8;s:26:\"_background_video_fallback\";i:8;s:23:\"_background_hover_image\";i:8;s:32:\"_background_hover_video_fallback\";i:8;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:8;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:15:\"hover_animation\";i:2;s:13:\"border_radius\";i:2;s:16:\"background_color\";i:2;s:11:\"hover_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"text_padding\";i:2;s:25:\"background_video_fallback\";i:2;s:38:\"button_background_hover_video_fallback\";i:2;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:16:\"background_image\";i:9;s:25:\"background_video_fallback\";i:9;s:22:\"background_hover_image\";i:9;s:31:\"background_hover_video_fallback\";i:9;s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:9;s:33:\"background_overlay_video_fallback\";i:9;s:30:\"background_overlay_hover_image\";i:9;s:39:\"background_overlay_hover_video_fallback\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"z_index\";i:2;s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:16:\"background_image\";i:5;s:25:\"background_video_fallback\";i:5;s:22:\"background_hover_image\";i:5;s:31:\"background_hover_video_fallback\";i:5;s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:5;s:33:\"background_overlay_video_fallback\";i:5;s:30:\"background_overlay_hover_image\";i:5;s:39:\"background_overlay_hover_video_fallback\";i:5;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:4:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:3;s:26:\"_background_video_fallback\";i:3;s:23:\"_background_hover_image\";i:3;s:32:\"_background_hover_video_fallback\";i:3;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:3;}}}}}'),(2339,9,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:16:\"background_image\";i:3;s:25:\"background_video_fallback\";i:3;s:22:\"background_hover_image\";i:3;s:31:\"background_hover_video_fallback\";i:3;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:3;s:33:\"background_overlay_video_fallback\";i:3;s:30:\"background_overlay_hover_image\";i:3;s:39:\"background_overlay_hover_video_fallback\";i:3;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:17:\"button_text_color\";i:1;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:25:\"background_video_fallback\";i:1;s:38:\"button_background_hover_video_fallback\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:16:\"background_image\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_hover_image\";i:1;s:31:\"background_hover_video_fallback\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:1;s:33:\"background_overlay_video_fallback\";i:1;s:30:\"background_overlay_hover_image\";i:1;s:39:\"background_overlay_hover_video_fallback\";i:1;}}}}}'),(2359,7,'_elementor_css','a:6:{s:4:\"time\";i:1694235712;s:5:\"fonts\";a:2:{i:0;s:11:\"EB Garamond\";i:2;s:7:\"Poppins\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2360,144,'_elementor_css','a:6:{s:4:\"time\";i:1694235716;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2361,347,'_elementor_css','a:6:{s:4:\"time\";i:1694235716;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2362,139,'_elementor_css','a:6:{s:4:\"time\";i:1694235716;s:5:\"fonts\";a:1:{i:0;s:11:\"EB Garamond\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

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

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2022-09-19 20:14:55','2022-09-19 20:14:55','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2022-09-19 20:14:55','2022-09-19 20:14:55','',0,'https://weinfluence.saturnwp.link/?p=1',0,'post','',1),(2,1,'2022-09-19 20:14:55','2022-09-19 20:14:55','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://weinfluence.saturnwp.link/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2022-09-19 20:14:55','2022-09-19 20:14:55','',0,'https://weinfluence.saturnwp.link/?page_id=2',0,'page','',0),(3,1,'2022-09-19 20:14:55','2022-09-19 20:14:55','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://weinfluence.saturnwp.link.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2022-09-19 20:14:55','2022-09-19 20:14:55','',0,'https://weinfluence.saturnwp.link/?page_id=3',0,'page','',0),(5,1,'2022-09-19 14:50:36','2022-09-19 20:20:36','','Default Kit','','publish','closed','closed','','default-kit','','','2022-09-19 14:50:36','2022-09-19 20:20:36','',0,'https://weinfluence.saturnwp.link/?p=5',0,'elementor_library','',0),(7,1,'2022-09-19 14:55:56','2022-09-19 20:25:56','','Influence - Influencer Marketing Template Kit','','publish','closed','closed','','influence-influencer-marketing-template-kit','','','2022-09-19 15:14:40','2022-09-19 20:44:40','',0,'https://weinfluence.saturnwp.link/?elementor_library=influence-influencer-marketing-template-kit',0,'elementor_library','',0),(8,1,'2022-09-19 14:55:56','2022-09-19 20:25:56','','Influence - Influencer Marketing Template Kit','','inherit','closed','closed','','7-revision-v1','','','2022-09-19 14:55:56','2022-09-19 20:25:56','',7,'https://weinfluence.saturnwp.link/?p=8',0,'revision','',0),(9,1,'2022-09-19 14:55:56','2022-09-19 20:25:56','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','publish','closed','closed','','header','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',0,'https://weinfluence.saturnwp.link/?elementor_library=header',0,'elementor_library','',0),(10,1,'2022-09-19 14:55:57','2022-09-19 20:25:57','','logo.png','','inherit','open','closed','','logo-png','','','2022-09-19 14:55:57','2022-09-19 20:25:57','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png',0,'attachment','image/png',0),(11,1,'2022-09-19 14:55:57','2022-09-19 20:25:57','','Header','','inherit','closed','closed','','9-revision-v1','','','2022-09-19 14:55:57','2022-09-19 20:25:57','',9,'https://weinfluence.saturnwp.link/?p=11',0,'revision','',0),(12,1,'2022-09-19 14:55:57','2022-09-19 20:25:57','<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','publish','closed','closed','','footer','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',0,'https://weinfluence.saturnwp.link/?elementor_library=footer',0,'elementor_library','',0),(13,1,'2022-09-19 14:55:58','2022-09-19 20:25:58','','Group-7.png','','inherit','open','closed','','group-7-png','','','2022-09-19 14:55:58','2022-09-19 20:25:58','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png',0,'attachment','image/png',0),(14,1,'2022-09-19 14:56:01','2022-09-19 20:26:01','','icon08.png','','inherit','open','closed','','icon08-png','','','2022-09-19 14:56:01','2022-09-19 20:26:01','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon08.png',0,'attachment','image/png',0),(15,1,'2022-09-19 14:56:03','2022-09-19 20:26:03','','jp09.jpg','','inherit','open','closed','','jp09-jpg','','','2022-09-19 14:56:03','2022-09-19 20:26:03','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg',0,'attachment','image/jpeg',0),(16,1,'2022-09-19 14:56:03','2022-09-19 20:26:03','','Footer','','inherit','closed','closed','','12-revision-v1','','','2022-09-19 14:56:03','2022-09-19 20:26:03','',12,'https://weinfluence.saturnwp.link/?p=16',0,'revision','',0),(17,1,'2022-09-19 14:56:03','2022-09-19 20:26:03','<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>Snoop Dogg</h3><p>Food Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Julia Roberts</h3><p>Food Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Will Smith</h3><p>Food Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Julie Estelle</h3><p>Food Influencer</p>','Influencer - Tab Section -01','','publish','closed','closed','','influencer-tab-section-01','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',0,'https://weinfluence.saturnwp.link/?elementor_library=influencer-tab-section-01',0,'elementor_library','',0),(18,1,'2022-09-19 14:56:04','2022-09-19 20:26:04','','influencer-1.jpg','','inherit','open','closed','','influencer-1-jpg','','','2022-09-19 14:56:04','2022-09-19 20:26:04','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg',0,'attachment','image/jpeg',0),(19,1,'2022-09-19 14:56:05','2022-09-19 20:26:05','','icon07.png','','inherit','open','closed','','icon07-png','','','2022-09-19 14:56:05','2022-09-19 20:26:05','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon07.png',0,'attachment','image/png',0),(20,1,'2022-09-19 14:56:06','2022-09-19 20:26:06','','influencer-4.jpg','','inherit','open','closed','','influencer-4-jpg','','','2022-09-19 14:56:06','2022-09-19 20:26:06','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg',0,'attachment','image/jpeg',0),(21,1,'2022-09-19 14:56:07','2022-09-19 20:26:07','','influencer-5.jpg','','inherit','open','closed','','influencer-5-jpg','','','2022-09-19 14:56:07','2022-09-19 20:26:07','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg',0,'attachment','image/jpeg',0),(22,1,'2022-09-19 14:56:09','2022-09-19 20:26:09','','influencer-7.jpg','','inherit','open','closed','','influencer-7-jpg','','','2022-09-19 14:56:09','2022-09-19 20:26:09','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg',0,'attachment','image/jpeg',0),(23,1,'2022-09-19 14:56:09','2022-09-19 20:26:09','','Influencer - Tab Section -01','','inherit','closed','closed','','17-revision-v1','','','2022-09-19 14:56:09','2022-09-19 20:26:09','',17,'https://weinfluence.saturnwp.link/?p=23',0,'revision','',0),(24,1,'2022-09-19 14:56:09','2022-09-19 20:26:09','<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Daniel Radcliffe</h3><p>Gaming Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Ryan Gosling</h3><p>Gaming Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Will Smith</h3><p>Gaming Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Julie Estelle</h3><p>Gaming Influencer</p>','Influencer - Tab Section -02','','publish','closed','closed','','influencer-tab-section-02','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',0,'https://weinfluence.saturnwp.link/?elementor_library=influencer-tab-section-02',0,'elementor_library','',0),(25,1,'2022-09-19 14:56:10','2022-09-19 20:26:10','','influencer-2.jpg','','inherit','open','closed','','influencer-2-jpg','','','2022-09-19 14:56:10','2022-09-19 20:26:10','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2.jpg',0,'attachment','image/jpeg',0),(26,1,'2022-09-19 14:56:11','2022-09-19 20:26:11','','influencer-12.jpg','','inherit','open','closed','','influencer-12-jpg','','','2022-09-19 14:56:11','2022-09-19 20:26:11','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12.jpg',0,'attachment','image/jpeg',0),(27,1,'2022-09-19 14:56:13','2022-09-19 20:26:13','','influencer-3.jpg','','inherit','open','closed','','influencer-3-jpg','','','2022-09-19 14:56:13','2022-09-19 20:26:13','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg',0,'attachment','image/jpeg',0),(28,1,'2022-09-19 14:56:14','2022-09-19 20:26:14','','influencer-10.jpg','','inherit','open','closed','','influencer-10-jpg','','','2022-09-19 14:56:14','2022-09-19 20:26:14','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10.jpg',0,'attachment','image/jpeg',0),(29,1,'2022-09-19 14:56:14','2022-09-19 20:26:14','','Influencer - Tab Section -02','','inherit','closed','closed','','24-revision-v1','','','2022-09-19 14:56:14','2022-09-19 20:26:14','',24,'https://weinfluence.saturnwp.link/?p=29',0,'revision','',0),(30,1,'2022-09-19 14:56:14','2022-09-19 20:26:14','<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Snoop Dogg</h3><p>Finance Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>rena Roberts</h3><p>Finance Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Julie Estelle</h3><p>Finance Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Steven Seagal</h3><p>Finance Influencer</p>','Influencer - Tab Section -03','','publish','closed','closed','','influencer-tab-section-03','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',0,'https://weinfluence.saturnwp.link/?elementor_library=influencer-tab-section-03',0,'elementor_library','',0),(31,1,'2022-09-19 14:56:15','2022-09-19 20:26:15','','influencer-6.jpg','','inherit','open','closed','','influencer-6-jpg','','','2022-09-19 14:56:15','2022-09-19 20:26:15','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg',0,'attachment','image/jpeg',0),(32,1,'2022-09-19 14:56:16','2022-09-19 20:26:16','','influencer-11.jpg','','inherit','open','closed','','influencer-11-jpg','','','2022-09-19 14:56:16','2022-09-19 20:26:16','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11.jpg',0,'attachment','image/jpeg',0),(33,1,'2022-09-19 14:56:18','2022-09-19 20:26:18','','influencer-9.jpg','','inherit','open','closed','','influencer-9-jpg','','','2022-09-19 14:56:18','2022-09-19 20:26:18','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg',0,'attachment','image/jpeg',0),(34,1,'2022-09-19 14:56:18','2022-09-19 20:26:18','','Influencer - Tab Section -03','','inherit','closed','closed','','30-revision-v1','','','2022-09-19 14:56:18','2022-09-19 20:26:18','',30,'https://weinfluence.saturnwp.link/?p=34',0,'revision','',0),(35,1,'2022-09-19 14:56:18','2022-09-19 20:26:18','','Contact form- Section - Metform','','publish','closed','closed','','contact-form-section-metform','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',0,'https://weinfluence.saturnwp.link/?elementor_library=contact-form-section-metform',0,'elementor_library','',0),(36,1,'2022-09-19 14:56:18','2022-09-19 20:26:18','','Contact form- Section - Metform','','inherit','closed','closed','','35-revision-v1','','','2022-09-19 14:56:18','2022-09-19 20:26:18','',35,'https://weinfluence.saturnwp.link/?p=36',0,'revision','',0),(37,1,'2022-09-19 14:56:18','2022-09-19 20:26:18','','Newslatter- Section - Metform','','publish','closed','closed','','newslatter-section-metform','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',0,'https://weinfluence.saturnwp.link/?elementor_library=newslatter-section-metform',0,'elementor_library','',0),(38,1,'2022-09-19 14:56:18','2022-09-19 20:26:18','','Newslatter- Section - Metform','','inherit','closed','closed','','37-revision-v1','','','2022-09-19 14:56:18','2022-09-19 20:26:18','',37,'https://weinfluence.saturnwp.link/?p=38',0,'revision','',0),(39,1,'2022-09-19 14:56:18','2022-09-19 20:26:18','<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','publish','closed','closed','','home','','','2022-09-19 14:57:24','2022-09-19 20:27:24','',0,'https://weinfluence.saturnwp.link/?elementor_library=home',0,'elementor_library','',0),(40,1,'2022-09-19 14:56:19','2022-09-19 20:26:19','','hero01.png','','inherit','open','closed','','hero01-png','','','2022-09-19 14:56:19','2022-09-19 20:26:19','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png',0,'attachment','image/png',0),(41,1,'2022-09-19 14:56:21','2022-09-19 20:26:21','','icon01.png','','inherit','open','closed','','icon01-png','','','2022-09-19 14:56:21','2022-09-19 20:26:21','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon01.png',0,'attachment','image/png',0),(42,1,'2022-09-19 14:56:23','2022-09-19 20:26:23','','hero02.png','','inherit','open','closed','','hero02-png','','','2022-09-19 14:56:23','2022-09-19 20:26:23','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png',0,'attachment','image/png',0),(43,1,'2022-09-19 14:56:24','2022-09-19 20:26:24','','icon05.png','','inherit','open','closed','','icon05-png','','','2022-09-19 14:56:24','2022-09-19 20:26:24','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png',0,'attachment','image/png',0),(44,1,'2022-09-19 14:56:25','2022-09-19 20:26:25','','icon04.png','','inherit','open','closed','','icon04-png','','','2022-09-19 14:56:25','2022-09-19 20:26:25','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png',0,'attachment','image/png',0),(45,1,'2022-09-19 14:56:26','2022-09-19 20:26:26','','icon02.png','','inherit','open','closed','','icon02-png','','','2022-09-19 14:56:26','2022-09-19 20:26:26','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon02.png',0,'attachment','image/png',0),(46,1,'2022-09-19 14:56:27','2022-09-19 20:26:27','','icon03.png','','inherit','open','closed','','icon03-png','','','2022-09-19 14:56:27','2022-09-19 20:26:27','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png',0,'attachment','image/png',0),(47,1,'2022-09-19 14:56:28','2022-09-19 20:26:28','','Bg01.png','','inherit','open','closed','','bg01-png','','','2022-09-19 14:56:28','2022-09-19 20:26:28','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Bg01.png',0,'attachment','image/png',0),(48,1,'2022-09-19 14:56:35','2022-09-19 20:26:35','','icon001.png','','inherit','open','closed','','icon001-png','','','2022-09-19 14:56:35','2022-09-19 20:26:35','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png',0,'attachment','image/png',0),(49,1,'2022-09-19 14:56:36','2022-09-19 20:26:36','','Group-3.png','','inherit','open','closed','','group-3-png','','','2022-09-19 14:56:36','2022-09-19 20:26:36','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-3.png',0,'attachment','image/png',0),(50,1,'2022-09-19 14:56:37','2022-09-19 20:26:37','','icon004.png','','inherit','open','closed','','icon004-png','','','2022-09-19 14:56:37','2022-09-19 20:26:37','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png',0,'attachment','image/png',0),(51,1,'2022-09-19 14:56:37','2022-09-19 20:26:37','','Group-4.png','','inherit','open','closed','','group-4-png','','','2022-09-19 14:56:37','2022-09-19 20:26:37','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-4.png',0,'attachment','image/png',0),(52,1,'2022-09-19 14:56:38','2022-09-19 20:26:38','','icon005.png','','inherit','open','closed','','icon005-png','','','2022-09-19 14:56:38','2022-09-19 20:26:38','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png',0,'attachment','image/png',0),(53,1,'2022-09-19 14:56:39','2022-09-19 20:26:39','','Group-6.png','','inherit','open','closed','','group-6-png','','','2022-09-19 14:56:39','2022-09-19 20:26:39','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-6.png',0,'attachment','image/png',0),(54,1,'2022-09-19 14:56:40','2022-09-19 20:26:40','','icon006.png','','inherit','open','closed','','icon006-png','','','2022-09-19 14:56:40','2022-09-19 20:26:40','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png',0,'attachment','image/png',0),(55,1,'2022-09-19 14:56:40','2022-09-19 20:26:40','','icon003.png','','inherit','open','closed','','icon003-png','','','2022-09-19 14:56:40','2022-09-19 20:26:40','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png',0,'attachment','image/png',0),(56,1,'2022-09-19 14:56:41','2022-09-19 20:26:41','','Group-5.png','','inherit','open','closed','','group-5-png','','','2022-09-19 14:56:41','2022-09-19 20:26:41','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-5.png',0,'attachment','image/png',0),(57,1,'2022-09-19 14:56:42','2022-09-19 20:26:42','','icon002.png','','inherit','open','closed','','icon002-png','','','2022-09-19 14:56:42','2022-09-19 20:26:42','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png',0,'attachment','image/png',0),(58,1,'2022-09-19 14:56:43','2022-09-19 20:26:43','','jp01.jpg','','inherit','open','closed','','jp01-jpg','','','2022-09-19 14:56:43','2022-09-19 20:26:43','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg',0,'attachment','image/jpeg',0),(59,1,'2022-09-19 14:56:44','2022-09-19 20:26:44','','icon06.png','','inherit','open','closed','','icon06-png','','','2022-09-19 14:56:44','2022-09-19 20:26:44','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon06.png',0,'attachment','image/png',0),(60,1,'2022-09-19 14:56:46','2022-09-19 20:26:46','','Bg.jpg','','inherit','open','closed','','bg-jpg','','','2022-09-19 14:56:46','2022-09-19 20:26:46','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Bg.jpg',0,'attachment','image/jpeg',0),(61,1,'2022-09-19 14:56:47','2022-09-19 20:26:47','','border01.png','','inherit','open','closed','','border01-png','','','2022-09-19 14:56:47','2022-09-19 20:26:47','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/border01.png',0,'attachment','image/png',0),(62,1,'2022-09-19 14:56:48','2022-09-19 20:26:48','','jp02.jpg','','inherit','open','closed','','jp02-jpg','','','2022-09-19 14:56:48','2022-09-19 20:26:48','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp02.jpg',0,'attachment','image/jpeg',0),(63,1,'2022-09-19 14:56:49','2022-09-19 20:26:49','','jp04.jpg','','inherit','open','closed','','jp04-jpg','','','2022-09-19 14:56:49','2022-09-19 20:26:49','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg',0,'attachment','image/jpeg',0),(64,1,'2022-09-19 14:56:51','2022-09-19 20:26:51','','Group-191.png','','inherit','open','closed','','group-191-png','','','2022-09-19 14:56:51','2022-09-19 20:26:51','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png',0,'attachment','image/png',0),(65,1,'2022-09-19 14:56:51','2022-09-19 20:26:51','','jp05.png','','inherit','open','closed','','jp05-png','','','2022-09-19 14:56:51','2022-09-19 20:26:51','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png',0,'attachment','image/png',0),(66,1,'2022-09-19 14:56:53','2022-09-19 20:26:53','','Group-194.png','','inherit','open','closed','','group-194-png','','','2022-09-19 14:56:53','2022-09-19 20:26:53','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png',0,'attachment','image/png',0),(67,1,'2022-09-19 14:56:54','2022-09-19 20:26:54','','jp06.png','','inherit','open','closed','','jp06-png','','','2022-09-19 14:56:54','2022-09-19 20:26:54','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png',0,'attachment','image/png',0),(68,1,'2022-09-19 14:56:56','2022-09-19 20:26:56','','jp07.png','','inherit','open','closed','','jp07-png','','','2022-09-19 14:56:56','2022-09-19 20:26:56','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png',0,'attachment','image/png',0),(69,1,'2022-09-19 14:56:57','2022-09-19 20:26:57','','Home','','inherit','closed','closed','','39-revision-v1','','','2022-09-19 14:56:57','2022-09-19 20:26:57','',39,'https://weinfluence.saturnwp.link/?p=69',0,'revision','',0),(70,1,'2022-09-19 14:56:57','2022-09-19 20:26:57','<h2>About influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>We help Brands <br>work more efficiently </h2>		\n			<h2>by connecting them to Influencers.</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit suspendisse, etiam vulputate gravida netus parturient est imperdiet, cubilia leo aliquam magnis fames ullamcorper semper. Massa bibendum aenean aliquet sociosqu mauris dignissim curae ad, luctus at sapien metus suscipit eros convallis, quis phasellus proin habitant egestas condimentum potenti.</p><p> </p><p>Semper nascetur ultricies risus maecenas malesuada ac, metus leo pellentesque imperdiet porta cursus, arcu nisi per class lacus. Eleifend magnis sociis volutpat nullam aliquet scelerisque hendrerit hac sagittis, neque eget proin molestie lacinia erat tincidunt litora tristique nisi, pulvinar ligula lectus nisl et augue in tempor.</p>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>Customers</h2>		\n				0\n				M +\n			<h2>Business Profiles Monitored</h2>		\n				0\n				+\n			<h2>\nEmployees</h2>		\n				0\n				+\n			<h2>Creators in our database</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n				brand support				\n			<h2>Leadership Team</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jamie Foxx</h3><p>CEO influence</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Miley Cyrus</h3><p>Chief People Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jonathan </h3><p>SVP, Head of Sales</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Max Powers</h3><p>\nChief Customer Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Roman Kazmin</h3><p>\nGeneral Manager</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Bethany Ellis</h3><p>\nChief People Officer</p>		\n			<h2>Our Services</h2>		\n			<h3>CAN WE HELP </h3><p>Looking for product support</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>Find Influencer</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>creator management</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','About','','publish','closed','closed','','about','','','2022-09-19 14:57:24','2022-09-19 20:27:24','',0,'https://weinfluence.saturnwp.link/?elementor_library=about',0,'elementor_library','',0),(71,1,'2022-09-19 14:56:58','2022-09-19 20:26:58','','icon09.png','','inherit','open','closed','','icon09-png','','','2022-09-19 14:56:58','2022-09-19 20:26:58','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png',0,'attachment','image/png',0),(72,1,'2022-09-19 14:57:01','2022-09-19 20:27:01','','Union-11.png','','inherit','open','closed','','union-11-png','','','2022-09-19 14:57:01','2022-09-19 20:27:01','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Union-11.png',0,'attachment','image/png',0),(73,1,'2022-09-19 14:57:03','2022-09-19 20:27:03','','jp012.jpg','','inherit','open','closed','','jp012-jpg','','','2022-09-19 14:57:03','2022-09-19 20:27:03','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012.jpg',0,'attachment','image/jpeg',0),(74,1,'2022-09-19 14:57:04','2022-09-19 20:27:04','','jp014.jpg','','inherit','open','closed','','jp014-jpg','','','2022-09-19 14:57:04','2022-09-19 20:27:04','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014.jpg',0,'attachment','image/jpeg',0),(75,1,'2022-09-19 14:57:06','2022-09-19 20:27:06','','jp013.jpg','','inherit','open','closed','','jp013-jpg','','','2022-09-19 14:57:06','2022-09-19 20:27:06','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013.jpg',0,'attachment','image/jpeg',0),(76,1,'2022-09-19 14:57:07','2022-09-19 20:27:07','','jp015.jpg','','inherit','open','closed','','jp015-jpg','','','2022-09-19 14:57:07','2022-09-19 20:27:07','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015.jpg',0,'attachment','image/jpeg',0),(77,1,'2022-09-19 14:57:09','2022-09-19 20:27:09','','influencer-8.jpg','','inherit','open','closed','','influencer-8-jpg','','','2022-09-19 14:57:09','2022-09-19 20:27:09','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg',0,'attachment','image/jpeg',0),(78,1,'2022-09-19 14:57:10','2022-09-19 20:27:10','','icon013.png','','inherit','open','closed','','icon013-png','','','2022-09-19 14:57:10','2022-09-19 20:27:10','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon013.png',0,'attachment','image/png',0),(79,1,'2022-09-19 14:57:12','2022-09-19 20:27:12','','icon012.png','','inherit','open','closed','','icon012-png','','','2022-09-19 14:57:12','2022-09-19 20:27:12','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon012.png',0,'attachment','image/png',0),(80,1,'2022-09-19 14:57:14','2022-09-19 20:27:14','','icon014.png','','inherit','open','closed','','icon014-png','','','2022-09-19 14:57:14','2022-09-19 20:27:14','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon014.png',0,'attachment','image/png',0),(81,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','','About','','inherit','closed','closed','','70-revision-v1','','','2022-09-19 14:57:16','2022-09-19 20:27:16','',70,'https://weinfluence.saturnwp.link/?p=81',0,'revision','',0),(82,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','<h2> influence Page</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Services</h2>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>','Influencers','','publish','closed','closed','','influencers','','','2022-09-19 14:57:24','2022-09-19 20:27:24','',0,'https://weinfluence.saturnwp.link/?elementor_library=influencers',0,'elementor_library','',0),(83,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','','Influencers','','inherit','closed','closed','','82-revision-v1','','','2022-09-19 14:57:16','2022-09-19 20:27:16','',82,'https://weinfluence.saturnwp.link/?p=83',0,'revision','',0),(84,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','<h2>How It Work</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h3>CAN WE HELP </h3><p>Looking for product support</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>Find Influencer</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>creator management</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','How It Work','','publish','closed','closed','','how-it-work','','','2022-09-19 14:57:24','2022-09-19 20:27:24','',0,'https://weinfluence.saturnwp.link/?elementor_library=how-it-work',0,'elementor_library','',0),(85,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','','How It Work','','inherit','closed','closed','','84-revision-v1','','','2022-09-19 14:57:16','2022-09-19 20:27:16','',84,'https://weinfluence.saturnwp.link/?p=85',0,'revision','',0),(86,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','<h1>404</h1>		\n			<h2>page not found</h2>		\n			<a href=\"#\" role=\"button\">\n						Back to homepage\n					</a>','404','','publish','closed','closed','','404','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',0,'https://weinfluence.saturnwp.link/?elementor_library=404',0,'elementor_library','',0),(87,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','','404','','inherit','closed','closed','','86-revision-v1','','','2022-09-19 14:57:16','2022-09-19 20:27:16','',86,'https://weinfluence.saturnwp.link/?p=87',0,'revision','',0),(88,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','<h2>FAQ influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>FAQ</h2>		\n			<h3>CAN WE HELP </h3><p>Looking for product support</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>Find Influencer</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>creator management</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','FAQ','','publish','closed','closed','','faq','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',0,'https://weinfluence.saturnwp.link/?elementor_library=faq',0,'elementor_library','',0),(89,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','','FAQ','','inherit','closed','closed','','88-revision-v1','','','2022-09-19 14:57:16','2022-09-19 20:27:16','',88,'https://weinfluence.saturnwp.link/?p=89',0,'revision','',0),(90,1,'2022-09-19 14:57:16','2022-09-19 20:27:16','<h2>	\nPricing</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Influencers ad posts and stories monitoring</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"493\" height=\"600\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon010.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon010.png 493w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon010-247x300.png 247w\" sizes=\"(max-width: 493px) 100vw, 493px\" />															\n			<h2>Flexible pricing for every business</h2>		\n			<h2>Upgrade, downgrade or cancel at any time</h2>		\n			<a href=\"#\" role=\"button\">\n						Start free trial\n					</a>','Pricing','','publish','closed','closed','','pricing','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',0,'https://weinfluence.saturnwp.link/?elementor_library=pricing',0,'elementor_library','',0),(91,1,'2022-09-19 14:57:17','2022-09-19 20:27:17','','icon010.png','','inherit','open','closed','','icon010-png','','','2022-09-19 14:57:17','2022-09-19 20:27:17','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon010.png',0,'attachment','image/png',0),(92,1,'2022-09-19 14:57:17','2022-09-19 20:27:17','','Pricing','','inherit','closed','closed','','90-revision-v1','','','2022-09-19 14:57:17','2022-09-19 20:27:17','',90,'https://weinfluence.saturnwp.link/?p=92',0,'revision','',0),(93,1,'2022-09-19 14:57:17','2022-09-19 20:27:17','<h2>Testimonial influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Testimonial</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5','Testimonial','','publish','closed','closed','','testimonial','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',0,'https://weinfluence.saturnwp.link/?elementor_library=testimonial',0,'elementor_library','',0),(94,1,'2022-09-19 14:57:17','2022-09-19 20:27:17','','Testimonial','','inherit','closed','closed','','93-revision-v1','','','2022-09-19 14:57:17','2022-09-19 20:27:17','',93,'https://weinfluence.saturnwp.link/?p=94',0,'revision','',0),(95,1,'2022-09-19 14:57:17','2022-09-19 20:27:17','<h2>Our Team </h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leadership Team</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jamie Foxx</h3><p>CEO influence</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Miley Cyrus</h3><p>Chief People Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jonathan </h3><p>SVP, Head of Sales</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Max Powers</h3><p>\nChief Customer Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Roman Kazmin</h3><p>\nGeneral Manager</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Bethany Ellis</h3><p>\nChief People Officer</p>','Our Team','','publish','closed','closed','','our-team','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',0,'https://weinfluence.saturnwp.link/?elementor_library=our-team',0,'elementor_library','',0),(96,1,'2022-09-19 14:57:17','2022-09-19 20:27:17','','Our Team','','inherit','closed','closed','','95-revision-v1','','','2022-09-19 14:57:17','2022-09-19 20:27:17','',95,'https://weinfluence.saturnwp.link/?p=96',0,'revision','',0),(97,1,'2022-09-19 14:57:18','2022-09-19 20:27:18','<h2>Blog influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Last News</h2>','Blog','','publish','closed','closed','','blog','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',0,'https://weinfluence.saturnwp.link/?elementor_library=blog',0,'elementor_library','',0),(98,1,'2022-09-19 14:57:18','2022-09-19 20:27:18','','Blog','','inherit','closed','closed','','97-revision-v1','','','2022-09-19 14:57:18','2022-09-19 20:27:18','',97,'https://weinfluence.saturnwp.link/?p=98',0,'revision','',0),(99,1,'2022-09-19 14:57:18','2022-09-19 20:27:18','<h2>Single Post </h2>		\n			<h2>A complete guide on Youtube marketing strategies</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					<ul>\n							<li>\n										28 may 2022\n									</li>\n						</ul>\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing, elit accumsan convallis nisl class facilisi, augue cubilia tortor arcu volutpat. Senectus sollicitudin penatibus vehicula mauris sagittis aenean aliquam, vel nullam dui placerat inceptos mattis, magna libero suscipit eleifend vitae est. Suspendisse odio a ornare libero senectus mollis curae, enim lacus pretium at faucibus phasellus.</p><p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget pharetra, fusce ornare parturient tempus leo rutrum id eu. Sagittis vivamus scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis luctus facilisi, eleifend lobortis ut porttitor mus nostra eu ornare, curae lacus etiam tellus pellentesque magnis.</p>		\n															<img width=\"800\" height=\"670\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011-1024x858.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011-1024x858.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011-300x251.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011-768x643.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011.png 1091w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Lending a Helping Paw</h2>		\n		<p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget  scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis luctus facilisi, eleifend lobortis ut porttitor mus nostra eu ornare, curae lacus etiam tellus pellentesque magnis.</p><p>Lorem ipsum dolor sit amet consectetur adipiscing, elit accumsan convallis nisl class facilisi, augue cubilia tortor arcu volutpat. Senectus sollicitudin penatibus vehicula mauris sagittis aenean aliquam, vel nullam dui placerat inceptos mattis, magna libero suscipit eleifend vitae est. Suspendisse odio a ornare libero senectus mollis curae, enim lacus pretium at faucibus phasellus.</p><p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget pharetra, fusce ornare parturient tempus leo rutrum id eu. Sagittis vivamus scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis </p>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-5.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci01LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-4.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjAsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci00LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-6.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzEsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci02LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-7.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjIsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci03LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-8.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NzcsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci04LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-9.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci05LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure>\n		<p>Mauris varius vitae tristique ridiculus tempor ullamcorper semper mus neque ad magnis, conubia accumsan quisque interdum penatibus sociis scelerisque ac fermentum montes consequat dictumst, tincidunt inceptos leo cubilia curae mi aptent porttitor libero imperdiet. Netus facilisis suspendisse luctus suscipit nunc posuere in, diam tellus pretium fringilla sagittis magnis, orci vitae vivamus sodales sociis facilisi.</p>		\n			<h2>Share :</h2>		\n			<h2>Contact Us</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit. </p>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Location					\n				</h3>\n									<p>\n						Jl Soekarno-hatta 03					</p>\n				<h3>\n						Phone					\n				</h3>\n									<p>\n						021-25400-8900					</p>\n				<h3>\n						Location					\n				</h3>\n									<p>\n						petcute@mail.com					</p>\n			<h2>Recent Post</h2>		\n			<h2>Follow Us</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>','Single Post','','publish','closed','closed','','single-post','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',0,'https://weinfluence.saturnwp.link/?elementor_library=single-post',0,'elementor_library','',0),(100,1,'2022-09-19 14:57:19','2022-09-19 20:27:19','','icon011.png','','inherit','open','closed','','icon011-png','','','2022-09-19 14:57:19','2022-09-19 20:27:19','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011.png',0,'attachment','image/png',0),(101,1,'2022-09-19 14:57:22','2022-09-19 20:27:22','','BG-06.png','','inherit','open','closed','','bg-06-png','','','2022-09-19 14:57:22','2022-09-19 20:27:22','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/BG-06.png',0,'attachment','image/png',0),(102,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','','Single Post','','inherit','closed','closed','','99-revision-v1','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',99,'https://weinfluence.saturnwp.link/?p=102',0,'revision','',0),(103,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-container{--container-widget-width:100%}.e-container>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-negative:0;flex-shrink:0}.e-container>.elementor-widget-spacer>.elementor-widget-container,.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>Contact Shoutcart Support</h2>		\n			<h2>Contact Us</h2>		\n			<h2>HELLO ! HOW CAN WE HELP ?</h2>		\n				Social Media				\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>','Contact','','publish','closed','closed','','contact','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',0,'https://weinfluence.saturnwp.link/?elementor_library=contact',0,'elementor_library','',0),(104,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','','Contact','','inherit','closed','closed','','103-revision-v1','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',103,'https://weinfluence.saturnwp.link/?p=104',0,'revision','',0),(105,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','9-revision-v1','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',9,'https://weinfluence.saturnwp.link/?p=105',0,'revision','',0),(106,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','12-revision-v1','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',12,'https://weinfluence.saturnwp.link/?p=106',0,'revision','',0),(107,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>Snoop Dogg</h3><p>Food Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Julia Roberts</h3><p>Food Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Will Smith</h3><p>Food Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Julie Estelle</h3><p>Food Influencer</p>','Influencer - Tab Section -01','','inherit','closed','closed','','17-revision-v1','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',17,'https://weinfluence.saturnwp.link/?p=107',0,'revision','',0),(108,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-2-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Daniel Radcliffe</h3><p>Gaming Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-12-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Ryan Gosling</h3><p>Gaming Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Will Smith</h3><p>Gaming Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Julie Estelle</h3><p>Gaming Influencer</p>','Influencer - Tab Section -02','','inherit','closed','closed','','24-revision-v1','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',24,'https://weinfluence.saturnwp.link/?p=108',0,'revision','',0),(109,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Snoop Dogg</h3><p>Finance Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-10-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>rena Roberts</h3><p>Finance Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-11-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Julie Estelle</h3><p>Finance Influencer</p>		\n															<img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" />															\n			<h3>Steven Seagal</h3><p>Finance Influencer</p>','Influencer - Tab Section -03','','inherit','closed','closed','','30-revision-v1','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',30,'https://weinfluence.saturnwp.link/?p=109',0,'revision','',0),(110,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','','Contact form- Section - Metform','','inherit','closed','closed','','35-revision-v1','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',35,'https://weinfluence.saturnwp.link/?p=110',0,'revision','',0),(111,1,'2022-09-19 14:57:23','2022-09-19 20:27:23','','Newslatter- Section - Metform','','inherit','closed','closed','','37-revision-v1','','','2022-09-19 14:57:23','2022-09-19 20:27:23','',37,'https://weinfluence.saturnwp.link/?p=111',0,'revision','',0),(112,1,'2022-09-19 14:57:24','2022-09-19 20:27:24','<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','39-revision-v1','','','2022-09-19 14:57:24','2022-09-19 20:27:24','',39,'https://weinfluence.saturnwp.link/?p=112',0,'revision','',0),(113,1,'2022-09-19 14:57:24','2022-09-19 20:27:24','<h2>About influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>We help Brands <br>work more efficiently </h2>		\n			<h2>by connecting them to Influencers.</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit suspendisse, etiam vulputate gravida netus parturient est imperdiet, cubilia leo aliquam magnis fames ullamcorper semper. Massa bibendum aenean aliquet sociosqu mauris dignissim curae ad, luctus at sapien metus suscipit eros convallis, quis phasellus proin habitant egestas condimentum potenti.</p><p> </p><p>Semper nascetur ultricies risus maecenas malesuada ac, metus leo pellentesque imperdiet porta cursus, arcu nisi per class lacus. Eleifend magnis sociis volutpat nullam aliquet scelerisque hendrerit hac sagittis, neque eget proin molestie lacinia erat tincidunt litora tristique nisi, pulvinar ligula lectus nisl et augue in tempor.</p>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>Customers</h2>		\n				0\n				M +\n			<h2>Business Profiles Monitored</h2>		\n				0\n				+\n			<h2>\nEmployees</h2>		\n				0\n				+\n			<h2>Creators in our database</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n				brand support				\n			<h2>Leadership Team</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jamie Foxx</h3><p>CEO influence</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Miley Cyrus</h3><p>Chief People Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jonathan </h3><p>SVP, Head of Sales</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Max Powers</h3><p>\nChief Customer Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Roman Kazmin</h3><p>\nGeneral Manager</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Bethany Ellis</h3><p>\nChief People Officer</p>		\n			<h2>Our Services</h2>		\n			<h3>CAN WE HELP </h3><p>Looking for product support</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>Find Influencer</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>creator management</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','About','','inherit','closed','closed','','70-revision-v1','','','2022-09-19 14:57:24','2022-09-19 20:27:24','',70,'https://weinfluence.saturnwp.link/?p=113',0,'revision','',0),(114,1,'2022-09-19 14:57:24','2022-09-19 20:27:24','<h2> influence Page</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Services</h2>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>','Influencers','','inherit','closed','closed','','82-revision-v1','','','2022-09-19 14:57:24','2022-09-19 20:27:24','',82,'https://weinfluence.saturnwp.link/?p=114',0,'revision','',0),(115,1,'2022-09-19 14:57:24','2022-09-19 20:27:24','<h2>How It Work</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h3>CAN WE HELP </h3><p>Looking for product support</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>Find Influencer</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>creator management</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','How It Work','','inherit','closed','closed','','84-revision-v1','','','2022-09-19 14:57:24','2022-09-19 20:27:24','',84,'https://weinfluence.saturnwp.link/?p=115',0,'revision','',0),(116,1,'2022-09-19 14:57:25','2022-09-19 20:27:25','<h1>404</h1>		\n			<h2>page not found</h2>		\n			<a href=\"#\" role=\"button\">\n						Back to homepage\n					</a>','404','','inherit','closed','closed','','86-revision-v1','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',86,'https://weinfluence.saturnwp.link/?p=116',0,'revision','',0),(117,1,'2022-09-19 14:57:25','2022-09-19 20:27:25','<h2>FAQ influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>FAQ</h2>		\n			<h3>CAN WE HELP </h3><p>Looking for product support</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>Find Influencer</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>creator management</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','FAQ','','inherit','closed','closed','','88-revision-v1','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',88,'https://weinfluence.saturnwp.link/?p=117',0,'revision','',0),(118,1,'2022-09-19 14:57:25','2022-09-19 20:27:25','<h2>	\nPricing</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Influencers ad posts and stories monitoring</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"493\" height=\"600\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon010.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon010.png 493w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon010-247x300.png 247w\" sizes=\"(max-width: 493px) 100vw, 493px\" />															\n			<h2>Flexible pricing for every business</h2>		\n			<h2>Upgrade, downgrade or cancel at any time</h2>		\n			<a href=\"#\" role=\"button\">\n						Start free trial\n					</a>','Pricing','','inherit','closed','closed','','90-revision-v1','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',90,'https://weinfluence.saturnwp.link/?p=118',0,'revision','',0),(119,1,'2022-09-19 14:57:25','2022-09-19 20:27:25','<h2>Testimonial influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Testimonial</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5','Testimonial','','inherit','closed','closed','','93-revision-v1','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',93,'https://weinfluence.saturnwp.link/?p=119',0,'revision','',0),(120,1,'2022-09-19 14:57:25','2022-09-19 20:27:25','<h2>Our Team </h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leadership Team</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jamie Foxx</h3><p>CEO influence</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Miley Cyrus</h3><p>Chief People Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jonathan </h3><p>SVP, Head of Sales</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Max Powers</h3><p>\nChief Customer Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Roman Kazmin</h3><p>\nGeneral Manager</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Bethany Ellis</h3><p>\nChief People Officer</p>','Our Team','','inherit','closed','closed','','95-revision-v1','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',95,'https://weinfluence.saturnwp.link/?p=120',0,'revision','',0),(121,1,'2022-09-19 14:57:25','2022-09-19 20:27:25','<h2>Blog influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Last News</h2>','Blog','','inherit','closed','closed','','97-revision-v1','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',97,'https://weinfluence.saturnwp.link/?p=121',0,'revision','',0),(122,1,'2022-09-19 14:57:25','2022-09-19 20:27:25','<h2>Single Post </h2>		\n			<h2>A complete guide on Youtube marketing strategies</h2>		\n															<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					<ul>\n							<li>\n										28 may 2022\n									</li>\n						</ul>\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing, elit accumsan convallis nisl class facilisi, augue cubilia tortor arcu volutpat. Senectus sollicitudin penatibus vehicula mauris sagittis aenean aliquam, vel nullam dui placerat inceptos mattis, magna libero suscipit eleifend vitae est. Suspendisse odio a ornare libero senectus mollis curae, enim lacus pretium at faucibus phasellus.</p><p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget pharetra, fusce ornare parturient tempus leo rutrum id eu. Sagittis vivamus scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis luctus facilisi, eleifend lobortis ut porttitor mus nostra eu ornare, curae lacus etiam tellus pellentesque magnis.</p>		\n															<img width=\"800\" height=\"670\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011-1024x858.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011-1024x858.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011-300x251.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011-768x643.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon011.png 1091w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Lending a Helping Paw</h2>		\n		<p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget  scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis luctus facilisi, eleifend lobortis ut porttitor mus nostra eu ornare, curae lacus etiam tellus pellentesque magnis.</p><p>Lorem ipsum dolor sit amet consectetur adipiscing, elit accumsan convallis nisl class facilisi, augue cubilia tortor arcu volutpat. Senectus sollicitudin penatibus vehicula mauris sagittis aenean aliquam, vel nullam dui placerat inceptos mattis, magna libero suscipit eleifend vitae est. Suspendisse odio a ornare libero senectus mollis curae, enim lacus pretium at faucibus phasellus.</p><p>Urna laoreet cubilia at nec vitae risus phasellus morbi vestibulum, proin penatibus quisque scelerisque per molestie faucibus litora eget pharetra, fusce ornare parturient tempus leo rutrum id eu. Sagittis vivamus scelerisque eleifend feugiat natoque molestie risus id ut gravida sapien montes, class hendrerit iaculis massa phasellus quis non cubilia facilisi cursus. A potenti fermentum id turpis iaculis </p>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-5.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci01LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-5-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-4.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjAsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci00LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-6.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzEsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci02LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-7.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjIsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci03LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-8.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NzcsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci04LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5dcf4b9c\" data-elementor-lightbox-title=\"influencer-9.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMsInVybCI6Imh0dHBzOlwvXC93ZWluZmx1ZW5jZS5zYXR1cm53cC5saW5rXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wOVwvaW5mbHVlbmNlci05LmpwZyIsInNsaWRlc2hvdyI6IjVkY2Y0YjljIn0%3D\" href=\'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg\'><img width=\"1100\" height=\"1100\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9.jpg 1100w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-9-768x768.jpg 768w\" sizes=\"(max-width: 1100px) 100vw, 1100px\" /></a>\n			</figure>\n		<p>Mauris varius vitae tristique ridiculus tempor ullamcorper semper mus neque ad magnis, conubia accumsan quisque interdum penatibus sociis scelerisque ac fermentum montes consequat dictumst, tincidunt inceptos leo cubilia curae mi aptent porttitor libero imperdiet. Netus facilisis suspendisse luctus suscipit nunc posuere in, diam tellus pretium fringilla sagittis magnis, orci vitae vivamus sodales sociis facilisi.</p>		\n			<h2>Share :</h2>		\n			<h2>Contact Us</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit. </p>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Location					\n				</h3>\n									<p>\n						Jl Soekarno-hatta 03					</p>\n				<h3>\n						Phone					\n				</h3>\n									<p>\n						021-25400-8900					</p>\n				<h3>\n						Location					\n				</h3>\n									<p>\n						petcute@mail.com					</p>\n			<h2>Recent Post</h2>		\n			<h2>Follow Us</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>','Single Post','','inherit','closed','closed','','99-revision-v1','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',99,'https://weinfluence.saturnwp.link/?p=122',0,'revision','',0),(123,1,'2022-09-19 14:57:25','2022-09-19 20:27:25','<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-container{--container-widget-width:100%}.e-container>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-negative:0;flex-shrink:0}.e-container>.elementor-widget-spacer>.elementor-widget-container,.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>Contact Shoutcart Support</h2>		\n			<h2>Contact Us</h2>		\n			<h2>HELLO ! HOW CAN WE HELP ?</h2>		\n				Social Media				\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>','Contact','','inherit','closed','closed','','103-revision-v1','','','2022-09-19 14:57:25','2022-09-19 20:27:25','',103,'https://weinfluence.saturnwp.link/?p=123',0,'revision','',0),(125,1,'2022-09-19 14:58:12','2022-09-19 20:28:12','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-hello-elementor','','','2022-09-19 14:58:12','2022-09-19 20:28:12','',0,'https://weinfluence.saturnwp.link/wp-global-styles-hello-elementor/',0,'wp_global_styles','',0),(139,1,'2022-09-19 15:10:12','2022-09-19 20:40:12','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n																<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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:#818a91;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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>©2023 We Influence. Powered by WhatTheHell?</h2>','Footer','','publish','closed','closed','','footer','','','2023-02-28 05:13:44','2023-02-28 10:43:44','',0,'https://weinfluence.saturnwp.link/?post_type=elementor-hf&#038;p=139',0,'elementor-hf','',0),(140,1,'2022-09-19 15:10:12','2022-09-19 20:40:12','','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-19 15:10:12','2022-09-19 20:40:12','',139,'https://weinfluence.saturnwp.link/?p=140',0,'revision','',0),(141,1,'2022-09-19 15:10:41','2022-09-19 20:40:41','','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-19 15:10:41','2022-09-19 20:40:41','',139,'https://weinfluence.saturnwp.link/?p=141',0,'revision','',0),(142,1,'2022-09-19 15:10:41','2022-09-19 20:40:41','','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-19 15:10:41','2022-09-19 20:40:41','',139,'https://weinfluence.saturnwp.link/?p=142',0,'revision','',0),(143,1,'2022-09-19 15:10:41','2022-09-19 20:40:41','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-19 15:10:41','2022-09-19 20:40:41','',139,'https://weinfluence.saturnwp.link/?p=143',0,'revision','',0),(144,1,'2022-09-19 15:11:12','2022-09-19 20:41:12','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','publish','closed','closed','','home','','','2023-03-01 04:53:37','2023-03-01 10:23:37','',0,'https://weinfluence.saturnwp.link/?page_id=144',0,'page','',0),(145,1,'2022-09-19 15:11:12','2022-09-19 20:41:12','','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-19 15:11:12','2022-09-19 20:41:12','',144,'https://weinfluence.saturnwp.link/?p=145',0,'revision','',0),(146,1,'2022-09-19 15:11:41','2022-09-19 20:41:41','','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-19 15:11:41','2022-09-19 20:41:41','',144,'https://weinfluence.saturnwp.link/?p=146',0,'revision','',0),(147,1,'2022-09-19 15:11:41','2022-09-19 20:41:41','','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-19 15:11:41','2022-09-19 20:41:41','',144,'https://weinfluence.saturnwp.link/?p=147',0,'revision','',0),(148,1,'2022-09-19 15:11:41','2022-09-19 20:41:41','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-19 15:11:41','2022-09-19 20:41:41','',144,'https://weinfluence.saturnwp.link/?p=148',0,'revision','',0),(161,1,'2022-09-19 15:23:26','2022-09-19 20:53:26','<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-container{--container-widget-width:100%}.e-container>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-negative:0;flex-shrink:0}.e-container>.elementor-widget-spacer>.elementor-widget-container,.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h2>Contact Shoutcart Support</h2>		\n			<h2>Contact Us</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<h2>HELLO ! HOW CAN WE HELP ?</h2>		\n				Social Media				\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>','Contact Us','','publish','closed','closed','','contact-us','','','2022-09-19 15:24:05','2022-09-19 20:54:05','',0,'https://weinfluence.saturnwp.link/?page_id=161',0,'page','',0),(162,1,'2022-09-19 15:23:26','2022-09-19 20:53:26','','Contact Us','','inherit','closed','closed','','161-revision-v1','','','2022-09-19 15:23:26','2022-09-19 20:53:26','',161,'https://weinfluence.saturnwp.link/?p=162',0,'revision','',0),(163,1,'2022-09-19 15:24:05','2022-09-19 20:54:05','','Contact Us','','inherit','closed','closed','','161-revision-v1','','','2022-09-19 15:24:05','2022-09-19 20:54:05','',161,'https://weinfluence.saturnwp.link/?p=163',0,'revision','',0),(164,1,'2022-09-19 15:24:05','2022-09-19 20:54:05','','Contact Us','','inherit','closed','closed','','161-revision-v1','','','2022-09-19 15:24:05','2022-09-19 20:54:05','',161,'https://weinfluence.saturnwp.link/?p=164',0,'revision','',0),(165,1,'2022-09-19 15:24:05','2022-09-19 20:54:05','<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-container{--container-widget-width:100%}.e-container>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-negative:0;flex-shrink:0}.e-container>.elementor-widget-spacer>.elementor-widget-container,.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h2>Contact Shoutcart Support</h2>		\n			<h2>Contact Us</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<h2>HELLO ! HOW CAN WE HELP ?</h2>		\n				Social Media				\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>','Contact Us','','inherit','closed','closed','','161-revision-v1','','','2022-09-19 15:24:05','2022-09-19 20:54:05','',161,'https://weinfluence.saturnwp.link/?p=165',0,'revision','',0),(166,1,'2022-11-15 05:37:48','2022-09-19 20:55:26',' ','','','publish','closed','closed','','166','','','2022-11-15 05:37:48','2022-11-15 11:07:48','',0,'https://weinfluence.saturnwp.link/?p=166',3,'nav_menu_item','',0),(174,1,'2022-09-20 01:02:20','2022-09-20 06:32:20','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h2>Blog influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Last News</h2>','Blog','','publish','closed','closed','','blog','','','2022-09-20 01:03:21','2022-09-20 06:33:21','',0,'https://weinfluence.saturnwp.link/?page_id=174',0,'page','',0),(175,1,'2022-11-15 05:37:48','2022-09-20 06:32:20',' ','','','publish','closed','closed','','175','','','2022-11-15 05:37:48','2022-11-15 11:07:48','',0,'https://weinfluence.saturnwp.link/175/',4,'nav_menu_item','',0),(176,1,'2022-09-20 01:02:20','2022-09-20 06:32:20','','Blog','','inherit','closed','closed','','174-revision-v1','','','2022-09-20 01:02:20','2022-09-20 06:32:20','',174,'https://weinfluence.saturnwp.link/?p=176',0,'revision','',0),(177,1,'2022-09-20 01:03:21','2022-09-20 06:33:21','','Blog','','inherit','closed','closed','','174-revision-v1','','','2022-09-20 01:03:21','2022-09-20 06:33:21','',174,'https://weinfluence.saturnwp.link/?p=177',0,'revision','',0),(178,1,'2022-09-20 01:03:21','2022-09-20 06:33:21','','Blog','','inherit','closed','closed','','174-revision-v1','','','2022-09-20 01:03:21','2022-09-20 06:33:21','',174,'https://weinfluence.saturnwp.link/?p=178',0,'revision','',0),(179,1,'2022-09-20 01:03:21','2022-09-20 06:33:21','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h2>Blog influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Last News</h2>','Blog','','inherit','closed','closed','','174-revision-v1','','','2022-09-20 01:03:21','2022-09-20 06:33:21','',174,'https://weinfluence.saturnwp.link/?p=179',0,'revision','',0),(187,1,'2022-09-22 04:36:14','2022-09-22 10:06:14','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:36:14','2022-09-22 10:06:14','',144,'https://weinfluence.saturnwp.link/?p=187',0,'revision','',0),(188,1,'2022-09-22 04:36:15','2022-09-22 10:06:15','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:36:15','2022-09-22 10:06:15','',144,'https://weinfluence.saturnwp.link/?p=188',0,'revision','',0),(189,1,'2022-09-22 04:36:16','2022-09-22 10:06:16','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:36:16','2022-09-22 10:06:16','',144,'https://weinfluence.saturnwp.link/?p=189',0,'revision','',0),(190,1,'2022-09-22 04:36:37','2022-09-22 10:06:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:36:37','2022-09-22 10:06:37','',144,'https://weinfluence.saturnwp.link/?p=190',0,'revision','',0),(191,1,'2022-09-22 04:36:37','2022-09-22 10:06:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:36:37','2022-09-22 10:06:37','',144,'https://weinfluence.saturnwp.link/?p=191',0,'revision','',0),(192,1,'2022-09-22 04:36:37','2022-09-22 10:06:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:36:37','2022-09-22 10:06:37','',144,'https://weinfluence.saturnwp.link/?p=192',0,'revision','',0),(193,1,'2022-09-22 04:37:08','2022-09-22 10:07:08','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:37:08','2022-09-22 10:07:08','',144,'https://weinfluence.saturnwp.link/?p=193',0,'revision','',0),(194,1,'2022-09-22 04:37:08','2022-09-22 10:07:08','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:37:08','2022-09-22 10:07:08','',144,'https://weinfluence.saturnwp.link/?p=194',0,'revision','',0),(195,1,'2022-09-22 04:37:08','2022-09-22 10:07:08','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:37:08','2022-09-22 10:07:08','',144,'https://weinfluence.saturnwp.link/?p=195',0,'revision','',0),(196,1,'2022-09-22 04:37:31','2022-09-22 10:07:31','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:37:31','2022-09-22 10:07:31','',144,'https://weinfluence.saturnwp.link/?p=196',0,'revision','',0),(197,1,'2022-09-22 04:37:31','2022-09-22 10:07:31','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:37:31','2022-09-22 10:07:31','',144,'https://weinfluence.saturnwp.link/?p=197',0,'revision','',0),(198,1,'2022-09-22 04:37:32','2022-09-22 10:07:32','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:37:32','2022-09-22 10:07:32','',144,'https://weinfluence.saturnwp.link/?p=198',0,'revision','',0),(199,1,'2022-09-22 04:37:57','2022-09-22 10:07:57','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:37:57','2022-09-22 10:07:57','',144,'https://weinfluence.saturnwp.link/?p=199',0,'revision','',0),(200,1,'2022-09-22 04:37:58','2022-09-22 10:07:58','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:37:58','2022-09-22 10:07:58','',144,'https://weinfluence.saturnwp.link/?p=200',0,'revision','',0),(201,1,'2022-09-22 04:37:58','2022-09-22 10:07:58','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:37:58','2022-09-22 10:07:58','',144,'https://weinfluence.saturnwp.link/?p=201',0,'revision','',0),(202,1,'2022-09-22 04:38:40','2022-09-22 10:08:40','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:38:40','2022-09-22 10:08:40','',144,'https://weinfluence.saturnwp.link/?p=202',0,'revision','',0),(203,1,'2022-09-22 04:38:42','2022-09-22 10:08:42','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:38:42','2022-09-22 10:08:42','',144,'https://weinfluence.saturnwp.link/?p=203',0,'revision','',0),(204,1,'2022-09-22 04:38:44','2022-09-22 10:08:44','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:38:44','2022-09-22 10:08:44','',144,'https://weinfluence.saturnwp.link/?p=204',0,'revision','',0),(205,1,'2022-09-22 04:39:56','2022-09-22 10:09:56','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:39:56','2022-09-22 10:09:56','',144,'https://weinfluence.saturnwp.link/?p=205',0,'revision','',0),(206,1,'2022-09-22 04:39:56','2022-09-22 10:09:56','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:39:56','2022-09-22 10:09:56','',144,'https://weinfluence.saturnwp.link/?p=206',0,'revision','',0),(207,1,'2022-09-22 04:39:56','2022-09-22 10:09:56','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:39:56','2022-09-22 10:09:56','',144,'https://weinfluence.saturnwp.link/?p=207',0,'revision','',0),(208,1,'2022-09-22 04:40:18','2022-09-22 10:10:18','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:40:18','2022-09-22 10:10:18','',144,'https://weinfluence.saturnwp.link/?p=208',0,'revision','',0),(209,1,'2022-09-22 04:40:18','2022-09-22 10:10:18','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:40:18','2022-09-22 10:10:18','',144,'https://weinfluence.saturnwp.link/?p=209',0,'revision','',0),(210,1,'2022-09-22 04:40:18','2022-09-22 10:10:18','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:40:18','2022-09-22 10:10:18','',144,'https://weinfluence.saturnwp.link/?p=210',0,'revision','',0),(211,1,'2022-09-22 04:40:45','2022-09-22 10:10:45','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:40:45','2022-09-22 10:10:45','',144,'https://weinfluence.saturnwp.link/?p=211',0,'revision','',0),(212,1,'2022-09-22 04:40:45','2022-09-22 10:10:45','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:40:45','2022-09-22 10:10:45','',144,'https://weinfluence.saturnwp.link/?p=212',0,'revision','',0),(213,1,'2022-09-22 04:40:45','2022-09-22 10:10:45','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:40:45','2022-09-22 10:10:45','',144,'https://weinfluence.saturnwp.link/?p=213',0,'revision','',0),(214,1,'2022-09-22 04:41:21','2022-09-22 10:11:21','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:41:21','2022-09-22 10:11:21','',144,'https://weinfluence.saturnwp.link/?p=214',0,'revision','',0),(215,1,'2022-09-22 04:41:21','2022-09-22 10:11:21','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:41:21','2022-09-22 10:11:21','',144,'https://weinfluence.saturnwp.link/?p=215',0,'revision','',0),(216,1,'2022-09-22 04:41:21','2022-09-22 10:11:21','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:41:21','2022-09-22 10:11:21','',144,'https://weinfluence.saturnwp.link/?p=216',0,'revision','',0),(217,1,'2022-09-22 04:41:33','2022-09-22 10:11:33','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:41:33','2022-09-22 10:11:33','',144,'https://weinfluence.saturnwp.link/?p=217',0,'revision','',0),(218,1,'2022-09-22 04:41:33','2022-09-22 10:11:33','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:41:33','2022-09-22 10:11:33','',144,'https://weinfluence.saturnwp.link/?p=218',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (219,1,'2022-09-22 04:41:34','2022-09-22 10:11:34','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:41:34','2022-09-22 10:11:34','',144,'https://weinfluence.saturnwp.link/?p=219',0,'revision','',0),(220,1,'2022-09-22 04:42:01','2022-09-22 10:12:01','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:42:01','2022-09-22 10:12:01','',144,'https://weinfluence.saturnwp.link/?p=220',0,'revision','',0),(221,1,'2022-09-22 04:42:01','2022-09-22 10:12:01','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:42:01','2022-09-22 10:12:01','',144,'https://weinfluence.saturnwp.link/?p=221',0,'revision','',0),(222,1,'2022-09-22 04:42:01','2022-09-22 10:12:01','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:42:01','2022-09-22 10:12:01','',144,'https://weinfluence.saturnwp.link/?p=222',0,'revision','',0),(223,1,'2022-09-22 04:42:36','2022-09-22 10:12:36','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:42:36','2022-09-22 10:12:36','',144,'https://weinfluence.saturnwp.link/?p=223',0,'revision','',0),(224,1,'2022-09-22 04:42:37','2022-09-22 10:12:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:42:37','2022-09-22 10:12:37','',144,'https://weinfluence.saturnwp.link/?p=224',0,'revision','',0),(225,1,'2022-09-22 04:42:37','2022-09-22 10:12:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:42:37','2022-09-22 10:12:37','',144,'https://weinfluence.saturnwp.link/?p=225',0,'revision','',0),(226,1,'2022-09-22 04:42:51','2022-09-22 10:12:51','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:42:51','2022-09-22 10:12:51','',144,'https://weinfluence.saturnwp.link/?p=226',0,'revision','',0),(227,1,'2022-09-22 04:42:51','2022-09-22 10:12:51','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:42:51','2022-09-22 10:12:51','',144,'https://weinfluence.saturnwp.link/?p=227',0,'revision','',0),(228,1,'2022-09-22 04:42:51','2022-09-22 10:12:51','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:42:51','2022-09-22 10:12:51','',144,'https://weinfluence.saturnwp.link/?p=228',0,'revision','',0),(229,1,'2022-09-22 04:43:32','2022-09-22 10:13:32','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:43:32','2022-09-22 10:13:32','',144,'https://weinfluence.saturnwp.link/?p=229',0,'revision','',0),(230,1,'2022-09-22 04:43:32','2022-09-22 10:13:32','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:43:32','2022-09-22 10:13:32','',144,'https://weinfluence.saturnwp.link/?p=230',0,'revision','',0),(231,1,'2022-09-22 04:43:32','2022-09-22 10:13:32','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:43:32','2022-09-22 10:13:32','',144,'https://weinfluence.saturnwp.link/?p=231',0,'revision','',0),(232,1,'2022-09-22 04:43:54','2022-09-22 10:13:54','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:43:54','2022-09-22 10:13:54','',144,'https://weinfluence.saturnwp.link/?p=232',0,'revision','',0),(233,1,'2022-09-22 04:43:54','2022-09-22 10:13:54','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:43:54','2022-09-22 10:13:54','',144,'https://weinfluence.saturnwp.link/?p=233',0,'revision','',0),(234,1,'2022-09-22 04:43:55','2022-09-22 10:13:55','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:43:55','2022-09-22 10:13:55','',144,'https://weinfluence.saturnwp.link/?p=234',0,'revision','',0),(235,1,'2022-09-22 04:44:13','2022-09-22 10:14:13','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:44:13','2022-09-22 10:14:13','',144,'https://weinfluence.saturnwp.link/?p=235',0,'revision','',0),(236,1,'2022-09-22 04:44:13','2022-09-22 10:14:13','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:44:13','2022-09-22 10:14:13','',144,'https://weinfluence.saturnwp.link/?p=236',0,'revision','',0),(237,1,'2022-09-22 04:44:13','2022-09-22 10:14:13','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:44:13','2022-09-22 10:14:13','',144,'https://weinfluence.saturnwp.link/?p=237',0,'revision','',0),(238,1,'2022-09-22 04:44:33','2022-09-22 10:14:33','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:44:33','2022-09-22 10:14:33','',144,'https://weinfluence.saturnwp.link/?p=238',0,'revision','',0),(239,1,'2022-09-22 04:44:33','2022-09-22 10:14:33','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:44:33','2022-09-22 10:14:33','',144,'https://weinfluence.saturnwp.link/?p=239',0,'revision','',0),(240,1,'2022-09-22 04:44:33','2022-09-22 10:14:33','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:44:33','2022-09-22 10:14:33','',144,'https://weinfluence.saturnwp.link/?p=240',0,'revision','',0),(241,1,'2022-09-22 04:44:43','2022-09-22 10:14:43','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:44:43','2022-09-22 10:14:43','',144,'https://weinfluence.saturnwp.link/?p=241',0,'revision','',0),(242,1,'2022-09-22 04:44:45','2022-09-22 10:14:45','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:44:45','2022-09-22 10:14:45','',144,'https://weinfluence.saturnwp.link/?p=242',0,'revision','',0),(243,1,'2022-09-22 04:44:45','2022-09-22 10:14:45','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:44:45','2022-09-22 10:14:45','',144,'https://weinfluence.saturnwp.link/?p=243',0,'revision','',0),(244,1,'2022-09-22 04:45:03','2022-09-22 10:15:03','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:45:03','2022-09-22 10:15:03','',144,'https://weinfluence.saturnwp.link/?p=244',0,'revision','',0),(245,1,'2022-09-22 04:45:03','2022-09-22 10:15:03','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:45:03','2022-09-22 10:15:03','',144,'https://weinfluence.saturnwp.link/?p=245',0,'revision','',0),(246,1,'2022-09-22 04:45:04','2022-09-22 10:15:04','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:45:04','2022-09-22 10:15:04','',144,'https://weinfluence.saturnwp.link/?p=246',0,'revision','',0),(247,1,'2022-09-22 04:45:16','2022-09-22 10:15:16','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:45:16','2022-09-22 10:15:16','',144,'https://weinfluence.saturnwp.link/?p=247',0,'revision','',0),(248,1,'2022-09-22 04:45:16','2022-09-22 10:15:16','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:45:16','2022-09-22 10:15:16','',144,'https://weinfluence.saturnwp.link/?p=248',0,'revision','',0),(249,1,'2022-09-22 04:45:17','2022-09-22 10:15:17','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:45:17','2022-09-22 10:15:17','',144,'https://weinfluence.saturnwp.link/?p=249',0,'revision','',0),(250,1,'2022-09-22 04:46:04','2022-09-22 10:16:04','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:04','2022-09-22 10:16:04','',144,'https://weinfluence.saturnwp.link/?p=250',0,'revision','',0),(251,1,'2022-09-22 04:46:04','2022-09-22 10:16:04','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:04','2022-09-22 10:16:04','',144,'https://weinfluence.saturnwp.link/?p=251',0,'revision','',0),(252,1,'2022-09-22 04:46:05','2022-09-22 10:16:05','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:05','2022-09-22 10:16:05','',144,'https://weinfluence.saturnwp.link/?p=252',0,'revision','',0),(253,1,'2022-09-22 04:46:12','2022-09-22 10:16:12','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:12','2022-09-22 10:16:12','',144,'https://weinfluence.saturnwp.link/?p=253',0,'revision','',0),(254,1,'2022-09-22 04:46:12','2022-09-22 10:16:12','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:12','2022-09-22 10:16:12','',144,'https://weinfluence.saturnwp.link/?p=254',0,'revision','',0),(255,1,'2022-09-22 04:46:13','2022-09-22 10:16:13','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:13','2022-09-22 10:16:13','',144,'https://weinfluence.saturnwp.link/?p=255',0,'revision','',0),(256,1,'2022-09-22 04:46:20','2022-09-22 10:16:20','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:20','2022-09-22 10:16:20','',144,'https://weinfluence.saturnwp.link/?p=256',0,'revision','',0),(257,1,'2022-09-22 04:46:20','2022-09-22 10:16:20','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:20','2022-09-22 10:16:20','',144,'https://weinfluence.saturnwp.link/?p=257',0,'revision','',0),(258,1,'2022-09-22 04:46:20','2022-09-22 10:16:20','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:20','2022-09-22 10:16:20','',144,'https://weinfluence.saturnwp.link/?p=258',0,'revision','',0),(259,1,'2022-09-22 04:46:31','2022-09-22 10:16:31','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:31','2022-09-22 10:16:31','',144,'https://weinfluence.saturnwp.link/?p=259',0,'revision','',0),(260,1,'2022-09-22 04:46:31','2022-09-22 10:16:31','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:31','2022-09-22 10:16:31','',144,'https://weinfluence.saturnwp.link/?p=260',0,'revision','',0),(261,1,'2022-09-22 04:46:31','2022-09-22 10:16:31','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:46:31','2022-09-22 10:16:31','',144,'https://weinfluence.saturnwp.link/?p=261',0,'revision','',0),(262,1,'2022-09-22 04:47:50','2022-09-22 10:17:50','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 04:47:50','2022-09-22 10:17:50','',139,'https://weinfluence.saturnwp.link/?p=262',0,'revision','',0),(263,1,'2022-09-22 04:47:51','2022-09-22 10:17:51','<style>/*! elementor - v3.7.6 - 15-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.6 - 15-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 04:47:51','2022-09-22 10:17:51','',139,'https://weinfluence.saturnwp.link/?p=263',0,'revision','',0),(264,1,'2022-09-22 04:47:51','2022-09-22 10:17:51','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 04:47:51','2022-09-22 10:17:51','',139,'https://weinfluence.saturnwp.link/?p=264',0,'revision','',0),(265,1,'2022-09-22 04:48:02','2022-09-22 10:18:02','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 04:48:02','2022-09-22 10:18:02','',139,'https://weinfluence.saturnwp.link/?p=265',0,'revision','',0),(266,1,'2022-09-22 04:48:02','2022-09-22 10:18:02','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 04:48:02','2022-09-22 10:18:02','',139,'https://weinfluence.saturnwp.link/?p=266',0,'revision','',0),(267,1,'2022-09-22 04:48:02','2022-09-22 10:18:02','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 04:48:02','2022-09-22 10:18:02','',139,'https://weinfluence.saturnwp.link/?p=267',0,'revision','',0),(268,1,'2022-09-22 04:49:43','2022-09-22 10:19:43','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 04:49:43','2022-09-22 10:19:43','',139,'https://weinfluence.saturnwp.link/?p=268',0,'revision','',0),(269,1,'2022-09-22 04:49:43','2022-09-22 10:19:43','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 04:49:43','2022-09-22 10:19:43','',139,'https://weinfluence.saturnwp.link/?p=269',0,'revision','',0),(270,1,'2022-09-22 04:49:46','2022-09-22 10:19:46','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 04:49:46','2022-09-22 10:19:46','',139,'https://weinfluence.saturnwp.link/?p=270',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (271,1,'2022-09-22 04:52:24','2022-09-22 10:22:24','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:52:24','2022-09-22 10:22:24','',144,'https://weinfluence.saturnwp.link/?p=271',0,'revision','',0),(272,1,'2022-09-22 04:52:24','2022-09-22 10:22:24','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:52:24','2022-09-22 10:22:24','',144,'https://weinfluence.saturnwp.link/?p=272',0,'revision','',0),(273,1,'2022-09-22 04:52:25','2022-09-22 10:22:25','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 04:52:25','2022-09-22 10:22:25','',144,'https://weinfluence.saturnwp.link/?p=273',0,'revision','',0),(277,1,'2022-11-15 05:37:48','2022-09-22 10:28:41',' ','','','publish','closed','closed','','277','','','2022-11-15 05:37:48','2022-11-15 11:07:48','',0,'https://weinfluence.saturnwp.link/?p=277',1,'nav_menu_item','',0),(278,1,'2022-09-22 04:59:53','2022-09-22 10:29:53','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>About influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>We help Brands <br>work more efficiently </h2>		\n			<h2>by connecting them to Influencers.</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit suspendisse, etiam vulputate gravida netus parturient est imperdiet, cubilia leo aliquam magnis fames ullamcorper semper. Massa bibendum aenean aliquet sociosqu mauris dignissim curae ad, luctus at sapien metus suscipit eros convallis, quis phasellus proin habitant egestas condimentum potenti.</p><p> </p><p>Semper nascetur ultricies risus maecenas malesuada ac, metus leo pellentesque imperdiet porta cursus, arcu nisi per class lacus. Eleifend magnis sociis volutpat nullam aliquet scelerisque hendrerit hac sagittis, neque eget proin molestie lacinia erat tincidunt litora tristique nisi, pulvinar ligula lectus nisl et augue in tempor.</p>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>Customers</h2>		\n				0\n				M +\n			<h2>Business Profiles Monitored</h2>		\n				0\n				+\n			<h2>\nEmployees</h2>		\n				0\n				+\n			<h2>Creators in our database</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n				brand support				\n			<h2>Leadership Team</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>Jamie Foxx</h3><p>CEO influence</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Miley Cyrus</h3><p>Chief People Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jonathan </h3><p>SVP, Head of Sales</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Max Powers</h3><p>\nChief Customer Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Roman Kazmin</h3><p>\nGeneral Manager</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Bethany Ellis</h3><p>\nChief People Officer</p>		\n			<h2>Our Services</h2>		\n			<h3>CAN WE HELP </h3><p>Looking for product support</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>Find Influencer</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>creator management</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','About Us','','publish','closed','closed','','about-us','','','2022-09-22 05:01:00','2022-09-22 10:31:00','',0,'https://weinfluence.saturnwp.link/?page_id=278',0,'page','',0),(279,1,'2022-11-15 05:37:48','2022-09-22 10:29:53',' ','','','publish','closed','closed','','279','','','2022-11-15 05:37:48','2022-11-15 11:07:48','',0,'https://weinfluence.saturnwp.link/279/',2,'nav_menu_item','',0),(280,1,'2022-09-22 04:59:53','2022-09-22 10:29:53','','About Us','','inherit','closed','closed','','278-revision-v1','','','2022-09-22 04:59:53','2022-09-22 10:29:53','',278,'https://weinfluence.saturnwp.link/?p=280',0,'revision','',0),(281,1,'2022-09-22 05:01:00','2022-09-22 10:31:00','','About Us','','inherit','closed','closed','','278-revision-v1','','','2022-09-22 05:01:00','2022-09-22 10:31:00','',278,'https://weinfluence.saturnwp.link/?p=281',0,'revision','',0),(282,1,'2022-09-22 05:01:00','2022-09-22 10:31:00','','About Us','','inherit','closed','closed','','278-revision-v1','','','2022-09-22 05:01:00','2022-09-22 10:31:00','',278,'https://weinfluence.saturnwp.link/?p=282',0,'revision','',0),(283,1,'2022-09-22 05:01:00','2022-09-22 10:31:00','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>About influence</h2>		\n			<h2>The Art and Science of Influencer Marketing</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"741\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-1024x948.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-300x278.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09-768x711.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon09.png 1166w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp012.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp014.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp013.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-566x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-566x1024.jpg 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-166x300.jpg 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-768x1390.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015-849x1536.jpg 849w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp015.jpg 867w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>We help Brands <br>work more efficiently </h2>		\n			<h2>by connecting them to Influencers.</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit suspendisse, etiam vulputate gravida netus parturient est imperdiet, cubilia leo aliquam magnis fames ullamcorper semper. Massa bibendum aenean aliquet sociosqu mauris dignissim curae ad, luctus at sapien metus suscipit eros convallis, quis phasellus proin habitant egestas condimentum potenti.</p><p> </p><p>Semper nascetur ultricies risus maecenas malesuada ac, metus leo pellentesque imperdiet porta cursus, arcu nisi per class lacus. Eleifend magnis sociis volutpat nullam aliquet scelerisque hendrerit hac sagittis, neque eget proin molestie lacinia erat tincidunt litora tristique nisi, pulvinar ligula lectus nisl et augue in tempor.</p>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>Customers</h2>		\n				0\n				M +\n			<h2>Business Profiles Monitored</h2>		\n				0\n				+\n			<h2>\nEmployees</h2>		\n				0\n				+\n			<h2>Creators in our database</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n				brand support				\n			<h2>Leadership Team</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-6.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>Jamie Foxx</h3><p>CEO influence</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-4.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Miley Cyrus</h3><p>Chief People Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-3.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Jonathan </h3><p>SVP, Head of Sales</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-7.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Max Powers</h3><p>\nChief Customer Officer</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-1.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Roman Kazmin</h3><p>\nGeneral Manager</p>		\n															<img width=\"800\" height=\"800\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-1024x1024.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-300x300.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-150x150.jpg 150w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8-768x768.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/influencer-8.jpg 1100w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Bethany Ellis</h3><p>\nChief People Officer</p>		\n			<h2>Our Services</h2>		\n			<h3>CAN WE HELP </h3><p>Looking for product support</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>Find Influencer</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h3>creator management</h3><p>Start Growing Your Brand</p>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','About Us','','inherit','closed','closed','','278-revision-v1','','','2022-09-22 05:01:00','2022-09-22 10:31:00','',278,'https://weinfluence.saturnwp.link/?p=283',0,'revision','',0),(285,1,'2022-09-22 05:16:04','2022-09-22 10:46:04','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 05:16:04','2022-09-22 10:46:04','',139,'https://weinfluence.saturnwp.link/?p=285',0,'revision','',0),(286,1,'2022-09-22 05:16:04','2022-09-22 10:46:04','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h2>Start Growing Your Brand with Influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>Start Growing Your Brand with Influence Today</h2>		\n															<img width=\"800\" height=\"934\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-877x1024.jpg 877w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-257x300.jpg 257w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09-768x897.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp09.jpg 1300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 05:16:04','2022-09-22 10:46:04','',139,'https://weinfluence.saturnwp.link/?p=286',0,'revision','',0),(287,1,'2022-09-22 05:16:05','2022-09-22 10:46:05','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 05:16:05','2022-09-22 10:46:05','',139,'https://weinfluence.saturnwp.link/?p=287',0,'revision','',0),(289,1,'2022-09-22 05:18:00','2022-09-22 10:48:00','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 05:18:00','2022-09-22 10:48:00','',139,'https://weinfluence.saturnwp.link/?p=289',0,'revision','',0),(290,1,'2022-09-22 05:18:00','2022-09-22 10:48:00','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 05:18:00','2022-09-22 10:48:00','',139,'https://weinfluence.saturnwp.link/?p=290',0,'revision','',0),(291,1,'2022-09-22 05:18:00','2022-09-22 10:48:00','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2022-09-22 05:18:00','2022-09-22 10:48:00','',139,'https://weinfluence.saturnwp.link/?p=291',0,'revision','',0),(292,1,'2022-09-22 05:20:30','2022-09-22 10:50:30','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:20:30','2022-09-22 10:50:30','',144,'https://weinfluence.saturnwp.link/?p=292',0,'revision','',0),(293,1,'2022-09-22 05:20:30','2022-09-22 10:50:30','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:20:30','2022-09-22 10:50:30','',144,'https://weinfluence.saturnwp.link/?p=293',0,'revision','',0),(294,1,'2022-09-22 05:20:30','2022-09-22 10:50:30','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:20:30','2022-09-22 10:50:30','',144,'https://weinfluence.saturnwp.link/?p=294',0,'revision','',0),(295,1,'2022-09-22 05:21:52','2022-09-22 10:51:52','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:21:52','2022-09-22 10:51:52','',144,'https://weinfluence.saturnwp.link/?p=295',0,'revision','',0),(296,1,'2022-09-22 05:21:52','2022-09-22 10:51:52','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:21:52','2022-09-22 10:51:52','',144,'https://weinfluence.saturnwp.link/?p=296',0,'revision','',0),(297,1,'2022-09-22 05:21:52','2022-09-22 10:51:52','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:21:52','2022-09-22 10:51:52','',144,'https://weinfluence.saturnwp.link/?p=297',0,'revision','',0),(298,1,'2022-09-22 05:22:04','2022-09-22 10:52:04','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:22:04','2022-09-22 10:52:04','',144,'https://weinfluence.saturnwp.link/?p=298',0,'revision','',0),(299,1,'2022-09-22 05:22:04','2022-09-22 10:52:04','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:22:04','2022-09-22 10:52:04','',144,'https://weinfluence.saturnwp.link/?p=299',0,'revision','',0),(300,1,'2022-09-22 05:22:04','2022-09-22 10:52:04','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:22:04','2022-09-22 10:52:04','',144,'https://weinfluence.saturnwp.link/?p=300',0,'revision','',0),(301,1,'2022-09-22 05:22:16','2022-09-22 10:52:16','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:22:16','2022-09-22 10:52:16','',144,'https://weinfluence.saturnwp.link/?p=301',0,'revision','',0),(302,1,'2022-09-22 05:22:16','2022-09-22 10:52:16','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:22:16','2022-09-22 10:52:16','',144,'https://weinfluence.saturnwp.link/?p=302',0,'revision','',0),(303,1,'2022-09-22 05:22:17','2022-09-22 10:52:17','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:22:17','2022-09-22 10:52:17','',144,'https://weinfluence.saturnwp.link/?p=303',0,'revision','',0),(304,1,'2022-09-22 05:22:26','2022-09-22 10:52:26','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:22:26','2022-09-22 10:52:26','',144,'https://weinfluence.saturnwp.link/?p=304',0,'revision','',0),(305,1,'2022-09-22 05:22:26','2022-09-22 10:52:26','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:22:26','2022-09-22 10:52:26','',144,'https://weinfluence.saturnwp.link/?p=305',0,'revision','',0),(306,1,'2022-09-22 05:22:26','2022-09-22 10:52:26','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:22:26','2022-09-22 10:52:26','',144,'https://weinfluence.saturnwp.link/?p=306',0,'revision','',0),(307,1,'2022-09-22 05:23:22','2022-09-22 10:53:22','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:23:22','2022-09-22 10:53:22','',144,'https://weinfluence.saturnwp.link/?p=307',0,'revision','',0),(308,1,'2022-09-22 05:23:22','2022-09-22 10:53:22','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:23:22','2022-09-22 10:53:22','',144,'https://weinfluence.saturnwp.link/?p=308',0,'revision','',0),(309,1,'2022-09-22 05:23:23','2022-09-22 10:53:23','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:23:23','2022-09-22 10:53:23','',144,'https://weinfluence.saturnwp.link/?p=309',0,'revision','',0),(310,1,'2022-09-22 05:23:37','2022-09-22 10:53:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:23:37','2022-09-22 10:53:37','',144,'https://weinfluence.saturnwp.link/?p=310',0,'revision','',0),(311,1,'2022-09-22 05:23:37','2022-09-22 10:53:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:23:37','2022-09-22 10:53:37','',144,'https://weinfluence.saturnwp.link/?p=311',0,'revision','',0),(312,1,'2022-09-22 05:23:37','2022-09-22 10:53:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:23:37','2022-09-22 10:53:37','',144,'https://weinfluence.saturnwp.link/?p=312',0,'revision','',0),(313,1,'2022-09-22 05:23:55','2022-09-22 10:53:55','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:23:55','2022-09-22 10:53:55','',144,'https://weinfluence.saturnwp.link/?p=313',0,'revision','',0),(314,1,'2022-09-22 05:23:55','2022-09-22 10:53:55','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:23:55','2022-09-22 10:53:55','',144,'https://weinfluence.saturnwp.link/?p=314',0,'revision','',0),(315,1,'2022-09-22 05:23:56','2022-09-22 10:53:56','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:23:56','2022-09-22 10:53:56','',144,'https://weinfluence.saturnwp.link/?p=315',0,'revision','',0),(316,1,'2022-09-22 05:24:07','2022-09-22 10:54:07','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:07','2022-09-22 10:54:07','',144,'https://weinfluence.saturnwp.link/?p=316',0,'revision','',0),(317,1,'2022-09-22 05:24:07','2022-09-22 10:54:07','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:07','2022-09-22 10:54:07','',144,'https://weinfluence.saturnwp.link/?p=317',0,'revision','',0),(318,1,'2022-09-22 05:24:07','2022-09-22 10:54:07','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:07','2022-09-22 10:54:07','',144,'https://weinfluence.saturnwp.link/?p=318',0,'revision','',0),(319,1,'2022-09-22 05:24:23','2022-09-22 10:54:23','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:23','2022-09-22 10:54:23','',144,'https://weinfluence.saturnwp.link/?p=319',0,'revision','',0),(320,1,'2022-09-22 05:24:23','2022-09-22 10:54:23','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:23','2022-09-22 10:54:23','',144,'https://weinfluence.saturnwp.link/?p=320',0,'revision','',0),(321,1,'2022-09-22 05:24:23','2022-09-22 10:54:23','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:23','2022-09-22 10:54:23','',144,'https://weinfluence.saturnwp.link/?p=321',0,'revision','',0),(322,1,'2022-09-22 05:24:33','2022-09-22 10:54:33','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:33','2022-09-22 10:54:33','',144,'https://weinfluence.saturnwp.link/?p=322',0,'revision','',0),(323,1,'2022-09-22 05:24:33','2022-09-22 10:54:33','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:33','2022-09-22 10:54:33','',144,'https://weinfluence.saturnwp.link/?p=323',0,'revision','',0),(324,1,'2022-09-22 05:24:33','2022-09-22 10:54:33','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:33','2022-09-22 10:54:33','',144,'https://weinfluence.saturnwp.link/?p=324',0,'revision','',0),(325,1,'2022-09-22 05:24:47','2022-09-22 10:54:47','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:47','2022-09-22 10:54:47','',144,'https://weinfluence.saturnwp.link/?p=325',0,'revision','',0),(326,1,'2022-09-22 05:24:47','2022-09-22 10:54:47','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:47','2022-09-22 10:54:47','',144,'https://weinfluence.saturnwp.link/?p=326',0,'revision','',0),(327,1,'2022-09-22 05:24:47','2022-09-22 10:54:47','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:24:47','2022-09-22 10:54:47','',144,'https://weinfluence.saturnwp.link/?p=327',0,'revision','',0),(328,1,'2022-09-22 05:25:11','2022-09-22 10:55:11','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:25:11','2022-09-22 10:55:11','',144,'https://weinfluence.saturnwp.link/?p=328',0,'revision','',0),(329,1,'2022-09-22 05:25:12','2022-09-22 10:55:12','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:25:12','2022-09-22 10:55:12','',144,'https://weinfluence.saturnwp.link/?p=329',0,'revision','',0),(330,1,'2022-09-22 05:25:13','2022-09-22 10:55:13','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:25:13','2022-09-22 10:55:13','',144,'https://weinfluence.saturnwp.link/?p=330',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (331,1,'2022-09-22 05:25:23','2022-09-22 10:55:23','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:25:23','2022-09-22 10:55:23','',144,'https://weinfluence.saturnwp.link/?p=331',0,'revision','',0),(332,1,'2022-09-22 05:25:24','2022-09-22 10:55:24','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:25:24','2022-09-22 10:55:24','',144,'https://weinfluence.saturnwp.link/?p=332',0,'revision','',0),(333,1,'2022-09-22 05:25:27','2022-09-22 10:55:27','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:25:27','2022-09-22 10:55:27','',144,'https://weinfluence.saturnwp.link/?p=333',0,'revision','',0),(334,1,'2022-09-22 05:25:40','2022-09-22 10:55:40','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:25:40','2022-09-22 10:55:40','',144,'https://weinfluence.saturnwp.link/?p=334',0,'revision','',0),(335,1,'2022-09-22 05:25:41','2022-09-22 10:55:41','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:25:41','2022-09-22 10:55:41','',144,'https://weinfluence.saturnwp.link/?p=335',0,'revision','',0),(336,1,'2022-09-22 05:25:41','2022-09-22 10:55:41','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 05:25:41','2022-09-22 10:55:41','',144,'https://weinfluence.saturnwp.link/?p=336',0,'revision','',0),(337,1,'2022-09-22 06:57:15','2022-09-22 12:27:15','','Artboard','','inherit','open','closed','','artboard','','','2022-09-22 06:57:15','2022-09-22 12:27:15','',0,'https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Artboard.png',0,'attachment','image/png',0),(338,1,'2022-09-22 07:05:31','2022-09-22 12:35:31','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 07:05:31','2022-09-22 12:35:31','',144,'https://weinfluence.saturnwp.link/?p=338',0,'revision','',0),(339,1,'2022-09-22 07:05:31','2022-09-22 12:35:31','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 07:05:31','2022-09-22 12:35:31','',144,'https://weinfluence.saturnwp.link/?p=339',0,'revision','',0),(340,1,'2022-09-22 07:05:32','2022-09-22 12:35:32','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n                <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"39f4eac08b\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\'>First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" ><label for=\'ff_3_names_last_name_\'>Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" ><label for=\'ff_3_email\'>Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\" ><label for=\'ff_3_subject\'>Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\" ><label for=\'ff_3_message\'>Your Message</label> <textarea name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2022-09-22 07:05:32','2022-09-22 12:35:32','',144,'https://weinfluence.saturnwp.link/?p=340',0,'revision','',0),(342,1,'2022-11-15 05:31:24','2022-11-15 11:01:24','','test page','','publish','closed','closed','','test-page','','','2022-11-15 05:31:24','2022-11-15 11:01:24','',0,'https://weinfluence-new.in8.cdn-alpha.com/?page_id=342',0,'page','',0),(344,1,'2022-11-15 05:31:24','2022-11-15 11:01:24','','test page','','inherit','closed','closed','','342-revision-v1','','','2022-11-15 05:31:24','2022-11-15 11:01:24','',342,'https://weinfluence-new.in8.cdn-alpha.com/?p=344',0,'revision','',0),(345,1,'2022-11-15 05:36:05','2022-11-15 11:06:05','<style>/*! elementor - v3.8.1 - 13-11-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp013-150x150.jpg\" alt=\"jp013.jpg\" /></figure><figure><img src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp014-150x150.jpg\" alt=\"jp014.jpg\" /></figure><figure><img src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp012-150x150.jpg\" alt=\"jp012.jpg\" /></figure>			\n												Previous\n												Next\n			<style>/*! elementor - v3.8.1 - 13-11-2022 */\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><h2>Our Team</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.8.1 - 13-11-2022 */\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>												<img width=\"800\" height=\"670\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon011-1024x858.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon011-1024x858.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon011-300x251.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon011-768x643.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon011.png 1091w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','test page','','inherit','closed','closed','','342-autosave-v1','','','2022-11-15 05:36:05','2022-11-15 11:06:05','',342,'https://weinfluence-new.in8.cdn-alpha.com/?p=345',0,'revision','',0),(347,1,'2023-02-27 05:51:37','2023-02-27 11:21:37','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','publish','closed','closed','','header','','','2023-02-28 06:52:30','2023-02-28 12:22:30','',0,'https://weinfluence-new.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=347',0,'elementor-hf','',0),(348,1,'2023-02-27 05:51:37','2023-02-27 11:21:37','','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-27 05:51:37','2023-02-27 11:21:37','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=348',0,'revision','',0),(350,1,'2023-02-28 04:46:02','2023-02-28 10:16:02','','We Influence','','inherit','open','closed','','we-influence','','','2023-02-28 04:46:02','2023-02-28 10:16:02','',347,'https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp',0,'attachment','image/webp',0),(351,1,'2023-02-28 04:46:38','2023-02-28 10:16:38','','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 04:46:38','2023-02-28 10:16:38','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=351',0,'revision','',0),(352,1,'2023-02-28 04:46:38','2023-02-28 10:16:38','','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 04:46:38','2023-02-28 10:16:38','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=352',0,'revision','',0),(353,1,'2023-02-28 04:46:38','2023-02-28 10:16:38','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 04:46:38','2023-02-28 10:16:38','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=353',0,'revision','',0),(354,1,'2023-02-28 04:52:41','2023-02-28 10:22:41','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 04:52:41','2023-02-28 10:22:41','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=354',0,'revision','',0),(355,1,'2023-02-28 04:52:41','2023-02-28 10:22:41','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 04:52:41','2023-02-28 10:22:41','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=355',0,'revision','',0),(356,1,'2023-02-28 04:52:42','2023-02-28 10:22:42','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 04:52:42','2023-02-28 10:22:42','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=356',0,'revision','',0),(357,1,'2023-02-28 04:55:42','2023-02-28 10:25:42','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 04:55:42','2023-02-28 10:25:42','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=357',0,'revision','',0),(358,1,'2023-02-28 04:55:42','2023-02-28 10:25:42','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 04:55:42','2023-02-28 10:25:42','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=358',0,'revision','',0),(359,1,'2023-02-28 04:55:42','2023-02-28 10:25:42','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 04:55:42','2023-02-28 10:25:42','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=359',0,'revision','',0),(360,1,'2023-02-28 05:01:46','2023-02-28 10:31:46','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-02-28 05:01:46','2023-02-28 10:31:46','',139,'https://weinfluence-new.in8.cdn-alpha.com/?p=360',0,'revision','',0),(361,1,'2023-02-28 05:01:46','2023-02-28 10:31:46','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);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:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence.saturnwp.link/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>Copyright 2022 Influence. All Rights Reserved by Onecontributor</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-02-28 05:01:46','2023-02-28 10:31:46','',139,'https://weinfluence-new.in8.cdn-alpha.com/?p=361',0,'revision','',0),(362,1,'2023-02-28 05:01:46','2023-02-28 10:31:46','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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:#818a91;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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>©2023 We Influence. Powered by WhatTheHell?</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-02-28 05:01:46','2023-02-28 10:31:46','',139,'https://weinfluence-new.in8.cdn-alpha.com/?p=362',0,'revision','',0),(364,1,'2023-02-28 05:05:58','2023-02-28 10:35:58','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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:#818a91;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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>©2023 We Influence. Powered by WhatTheHell?</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-02-28 05:05:58','2023-02-28 10:35:58','',139,'https://weinfluence-new.in8.cdn-alpha.com/?p=364',0,'revision','',0),(365,1,'2023-02-28 05:05:58','2023-02-28 10:35:58','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"541\" height=\"90\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/logo.png 541w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/logo-300x50.png 300w\" sizes=\"(max-width: 541px) 100vw, 541px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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:#818a91;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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n			<h2>©2023 We Influence. Powered by WhatTheHell?</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-02-28 05:05:58','2023-02-28 10:35:58','',139,'https://weinfluence-new.in8.cdn-alpha.com/?p=365',0,'revision','',0),(366,1,'2023-02-28 05:05:59','2023-02-28 10:35:59','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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:#818a91;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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>©2023 We Influence. Powered by WhatTheHell?</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-02-28 05:05:59','2023-02-28 10:35:59','',139,'https://weinfluence-new.in8.cdn-alpha.com/?p=366',0,'revision','',0),(367,1,'2023-02-28 05:13:44','2023-02-28 10:43:44','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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:#818a91;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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>©2023 We Influence. Powered by WhatTheHell?</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-02-28 05:13:44','2023-02-28 10:43:44','',139,'https://weinfluence-new.in8.cdn-alpha.com/?p=367',0,'revision','',0),(368,1,'2023-02-28 05:13:44','2023-02-28 10:43:44','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n															<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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:#818a91;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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>©2023 We Influence. Powered by WhatTheHell?</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-02-28 05:13:44','2023-02-28 10:43:44','',139,'https://weinfluence-new.in8.cdn-alpha.com/?p=368',0,'revision','',0),(369,1,'2023-02-28 05:13:44','2023-02-28 10:43:44','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"800\" height=\"231\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1024x296.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-300x87.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-768x222.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7-1536x444.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-7.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n					</a>\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>START GROWING YOUR BRAND WITH INFLUENCE TODAY</h1>		\n																<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n			<h2>Follow us on</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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:#818a91;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:#818a91}.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-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-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>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<h2>About</h2>		\n			<link rel=\"stylesheet\" href=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Partnerships\n									</li>\n								<li>\n										Careers\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Press & media\n									</li>\n								<li>\n										Privacy Policy\n									</li>\n						</ul>\n			<h2>Influencer</h2>		\n					<ul>\n							<li>\n										Influencer Analysis\n									</li>\n								<li>\n										Influencer Management\n									</li>\n								<li>\n										Find Instagram Influencers\n									</li>\n								<li>\n										Find YouTube Influencers\n									</li>\n								<li>\n										Find TikTok Influencers\n									</li>\n						</ul>\n			<h2>Resources</h2>		\n					<ul>\n							<li>\n										Case studies\n									</li>\n								<li>\n										Brand influence\n									</li>\n								<li>\n										Alternatives\n									</li>\n								<li>\n										Integrations\n									</li>\n								<li>\n										Creators\n									</li>\n						</ul>\n			<h2>©2023 We Influence. Powered by WhatTheHell?</h2>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-02-28 05:13:44','2023-02-28 10:43:44','',139,'https://weinfluence-new.in8.cdn-alpha.com/?p=369',0,'revision','',0),(370,1,'2023-02-28 05:27:37','2023-02-28 10:57:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n                <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"39f4eac08b\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\'>First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" ><label for=\'ff_3_names_last_name_\'>Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" ><label for=\'ff_3_email\'>Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\" ><label for=\'ff_3_subject\'>Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\" ><label for=\'ff_3_message\'>Your Message</label> <textarea name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 05:27:37','2023-02-28 10:57:37','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=370',0,'revision','',0),(371,1,'2023-02-28 05:27:37','2023-02-28 10:57:37','<style>/*! elementor - v3.7.7 - 20-09-2022 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence.saturnwp.link/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.7.7 - 20-09-2022 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n                <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"39f4eac08b\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\'>First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" ><label for=\'ff_3_names_last_name_\'>Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" ><label for=\'ff_3_email\'>Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\" ><label for=\'ff_3_subject\'>Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\" ><label for=\'ff_3_message\'>Your Message</label> <textarea name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 05:27:37','2023-02-28 10:57:37','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=371',0,'revision','',0),(372,1,'2023-02-28 05:27:38','2023-02-28 10:57:38','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3ad434aee1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 05:27:38','2023-02-28 10:57:38','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=372',0,'revision','',0),(374,1,'2023-02-28 05:40:40','2023-02-28 11:10:40','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3ad434aee1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 05:40:40','2023-02-28 11:10:40','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=374',0,'revision','',0),(375,1,'2023-02-28 05:40:40','2023-02-28 11:10:40','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost business with influencer marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3ad434aee1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 05:40:40','2023-02-28 11:10:40','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=375',0,'revision','',0),(376,1,'2023-02-28 05:40:41','2023-02-28 11:10:41','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3ad434aee1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 05:40:41','2023-02-28 11:10:41','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=376',0,'revision','',0),(377,1,'2023-02-28 05:53:28','2023-02-28 11:23:28','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3ad434aee1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 05:53:28','2023-02-28 11:23:28','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=377',0,'revision','',0),(378,1,'2023-02-28 05:53:28','2023-02-28 11:23:28','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3ad434aee1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 05:53:28','2023-02-28 11:23:28','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=378',0,'revision','',0),(379,1,'2023-02-28 05:53:28','2023-02-28 11:23:28','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3ad434aee1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 05:53:28','2023-02-28 11:23:28','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=379',0,'revision','',0),(381,1,'2023-02-28 06:51:20','2023-02-28 12:21:20','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 06:51:20','2023-02-28 12:21:20','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=381',0,'revision','',0),(382,1,'2023-02-28 06:51:20','2023-02-28 12:21:20','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 06:51:20','2023-02-28 12:21:20','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=382',0,'revision','',0),(383,1,'2023-02-28 06:51:20','2023-02-28 12:21:20','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 06:51:20','2023-02-28 12:21:20','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=383',0,'revision','',0),(384,1,'2023-02-28 06:52:30','2023-02-28 12:22:30','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 06:52:30','2023-02-28 12:22:30','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=384',0,'revision','',0),(385,1,'2023-02-28 06:52:30','2023-02-28 12:22:30','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 06:52:30','2023-02-28 12:22:30','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=385',0,'revision','',0),(386,1,'2023-02-28 06:52:30','2023-02-28 12:22:30','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>													<a href=\"https://weinfluence-new.in8.cdn-alpha.com/\">\n							<img width=\"800\" height=\"325\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1024x416.webp 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-300x122.webp 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-768x312.webp 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence-1536x624.webp 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/02/We-Influence.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-713e4eb\"><li id=\"menu-item-277\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-279\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-166\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://weinfluence-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','Header','','inherit','closed','closed','','347-revision-v1','','','2023-02-28 06:52:30','2023-02-28 12:22:30','',347,'https://weinfluence-new.in8.cdn-alpha.com/?p=386',0,'revision','',0),(387,1,'2023-02-28 07:14:09','2023-02-28 12:44:09','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3ad434aee1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 07:14:09','2023-02-28 12:44:09','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=387',0,'revision','',0),(388,1,'2023-02-28 07:14:09','2023-02-28 12:44:09','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3ad434aee1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 07:14:09','2023-02-28 12:44:09','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=388',0,'revision','',0),(389,1,'2023-02-28 07:14:09','2023-02-28 12:44:09','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3b20db1191\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-02-28 07:14:09','2023-02-28 12:44:09','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=389',0,'revision','',0),(391,1,'2023-03-01 02:15:32','2023-03-01 07:45:32','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3b20db1191\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 02:15:32','2023-03-01 07:45:32','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=391',0,'revision','',0),(392,1,'2023-03-01 02:15:32','2023-03-01 07:45:32','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>What Can We Bring for You?</h2>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Affiliate & Conversion </h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Events</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Placement</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Reach & Frequency</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Product Sampling</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam varius morbi aliquam molestie vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"3b20db1191\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 02:15:32','2023-03-01 07:45:32','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=392',0,'revision','',0),(393,1,'2023-03-01 02:15:32','2023-03-01 07:45:32','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 02:15:32','2023-03-01 07:45:32','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=393',0,'revision','',0),(394,1,'2023-03-01 02:35:42','2023-03-01 08:05:42','','We Influence Logo','','inherit','open','closed','','we-influence-logo','','','2023-03-01 02:35:42','2023-03-01 08:05:42','',0,'https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/We-Influence-Logo.webp',0,'attachment','image/webp',0),(395,1,'2023-03-01 02:36:19','2023-03-01 08:06:19','https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/cropped-We-Influence-Logo.webp','cropped-We-Influence-Logo.webp','','inherit','open','closed','','cropped-we-influence-logo-webp','','','2023-03-01 02:36:19','2023-03-01 08:06:19','',0,'https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/cropped-We-Influence-Logo.webp',0,'attachment','image/webp',0),(399,1,'2023-03-01 02:41:21','2023-03-01 08:11:21','','We Influence Site Icon','','inherit','open','closed','','we-influence-site-icon','','','2023-03-01 02:41:21','2023-03-01 08:11:21','',0,'https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/We-Influence-Site-Icon.png',0,'attachment','image/png',0),(401,1,'2023-03-01 02:42:24','2023-03-01 08:12:24','https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/cropped-We-Influence-Site-Icon.png','cropped-We-Influence-Site-Icon.png','','inherit','open','closed','','cropped-we-influence-site-icon-png','','','2023-03-01 02:42:24','2023-03-01 08:12:24','',0,'https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/cropped-We-Influence-Site-Icon.png',0,'attachment','image/png',0),(403,1,'2023-03-01 03:45:07','2023-03-01 09:15:07','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 03:45:07','2023-03-01 09:15:07','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=403',0,'revision','',0),(404,1,'2023-03-01 03:45:07','2023-03-01 09:15:07','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 03:45:07','2023-03-01 09:15:07','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=404',0,'revision','',0),(405,1,'2023-03-01 03:45:07','2023-03-01 09:15:07','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 03:45:07','2023-03-01 09:15:07','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=405',0,'revision','',0),(406,1,'2023-03-01 04:48:14','2023-03-01 10:18:14','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 04:48:14','2023-03-01 10:18:14','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=406',0,'revision','',0),(407,1,'2023-03-01 04:48:14','2023-03-01 10:18:14','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 04:48:14','2023-03-01 10:18:14','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=407',0,'revision','',0),(408,1,'2023-03-01 04:48:14','2023-03-01 10:18:14','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 04:48:14','2023-03-01 10:18:14','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=408',0,'revision','',0),(409,1,'2023-03-01 04:53:37','2023-03-01 10:23:37','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 04:53:37','2023-03-01 10:23:37','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=409',0,'revision','',0),(410,1,'2023-03-01 04:53:37','2023-03-01 10:23:37','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 04:53:37','2023-03-01 10:23:37','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=410',0,'revision','',0),(411,1,'2023-03-01 04:53:37','2023-03-01 10:23:37','<style>/*! elementor - v3.10.2 - 29-01-2023 */\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>												<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero02.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon05-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\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><h1>Boost Business With Influencer Marketing</h1>		\n		<p>Find the best-matched influencer for your brand. Unleash your growth potential with influence.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"566\" height=\"1024\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-566x1024.png 566w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01-166x300.png 166w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/hero01.png 642w\" sizes=\"(max-width: 566px) 100vw, 566px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>What Can We Bring for You?</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon001.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Instagram</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon004.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Youtube</h3>		\n			<figure><img width=\"111\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon005.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Twitter</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon006.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Facebook</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon003.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Celebrity Management</h3>		\n			<figure><img width=\"110\" height=\"114\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon002.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Unboxing With Creators</h3>		\n			<h2>Why Influencer Marketing?</h2>		\n		<ul><li>Amplify Your Brand Awareness</li><li>Reach Your Target Audience</li><li>Improve Your Credibility And Trust</li><li>Revamp Your Content Strategy</li><li>Increase Your Engagement</li><li>Enhance Your Search Engine Rankings</li><li>Boost Your Conversions</li></ul>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon03-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-1024x683.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-300x200.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01-768x512.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp01.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"399\" height=\"399\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04.png 399w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-300x300.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/icon04-150x150.png 150w\" sizes=\"(max-width: 399px) 100vw, 399px\" />															\n			<h2>Find the Perfect  Influencers <br>for Your Business</h2>		\n			<a href=\"#\" role=\"button\">\n						View all\n					</a>\n			<h2>Start Growing Your Brand with influence Today</h2>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<h2>Our Services</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis  vitae, lacus tempus libero feugiat neque </p>		\n			<h2>How does it work?</h2>		\n			<h3>Step 01</h3><p>Create a Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<a href=\"#\" role=\"button\">\n						Create your Campaign\n					</a>\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1024x595.jpg 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-300x174.jpg 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-768x446.jpg 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04-1536x893.jpg 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp04.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp05.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 02</h3><p>Choose Influencers</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-194-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n			<h3>Step 03</h3><p>Monitor Your Campaign</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n															<img width=\"800\" height=\"465\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1024x595.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-300x174.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-768x446.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06-1536x893.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp06.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"167\" height=\"480\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191.png 167w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/Group-191-104x300.png 104w\" sizes=\"(max-width: 167px) 100vw, 167px\" />															\n															<img width=\"800\" height=\"532\" src=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png\" alt=\"\" loading=\"lazy\" srcset=\"https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1024x681.png 1024w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-300x199.png 300w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-768x510.png 768w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07-1536x1021.png 1536w, https://weinfluence-new.in8.cdn-alpha.com/wp-content/uploads/2022/09/jp07.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h3>Step 04</h3><p>Check your report calmly</p>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit mattis semper, purus vestibulum nam  vitae, lacus tempus libero feugiat neque natoque quisque fames.</p>		\n			<h2>Happy Faces</h2>		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Natalie Portman</h2>		\n			<style>/*! elementor - v3.10.2 - 29-01-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Jamie Foxx</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Nicolas Cage</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n		<p>Lorem ipsum dolor sit amet consectetur adipiscing elit odio  malesuada rhoncus urna.</p>		\n			<h2>Julia Roberts</h2>		\n						<i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i><i>&#9733;</i> 5/5		\n			<h2>FAQ</h2>		\n            <form data-form_id=\"3\" id=\"fluentform_3\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;\n                                 box-shadow: none!important;outline: none!important;\">\n                    <legend style=\"margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;\">Contact Form Demo (#3)</legend><input type=\'hidden\' name=\'__fluent_form_embded_post_id\' value=\'144\' /><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"6e742bd1f3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><label for=\'ff_3_names_first_name_\' aria-label=\"First Name\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" placeholder=\"First Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_names_last_name_\' aria-label=\"Last Name\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" placeholder=\"Last Name\" aria-invalid=\"false\" aria-required=false><label for=\'ff_3_email\' aria-label=\"Email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_3_email\" placeholder=\"Email Address\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><label for=\'ff_3_subject\' aria-label=\"Subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_3_subject\"  aria-invalid=\"false\" aria-required=false><label for=\'ff_3_message\' aria-label=\"Your Message\">Your Message</label> <textarea aria-invalid=\"false\" aria-required=true name=\"message\" id=\"ff_3_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\" ></textarea><button type=\"submit\" >Submit Form</button></fieldset></form>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-01 04:53:37','2023-03-01 10:23:37','',144,'https://weinfluence-new.in8.cdn-alpha.com/?p=411',0,'revision','',0),(412,1,'2023-04-18 04:34:38','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-04-18 04:34:38','0000-00-00 00:00:00','',0,'https://weinfluence-new.in8.cdn-alpha.com/?p=412',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

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

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(9,2,0),(12,2,0),(17,2,0),(24,2,0),(30,2,0),(35,2,0),(37,2,0),(39,2,0),(70,3,0),(82,3,0),(84,3,0),(86,2,0),(88,3,0),(90,3,0),(93,3,0),(95,3,0),(97,3,0),(99,2,0),(103,3,0),(125,4,0),(166,5,0),(175,5,0),(277,5,0),(279,5,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

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

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'elementor_library_type','',0,10),(3,3,'elementor_library_type','',0,9),(4,4,'wp_theme','',0,1),(5,5,'nav_menu','',0,4);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

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

--
-- Dumping data for table `wp_termmeta`
--

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

--
-- Table structure for table `wp_terms`
--

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

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'section','section',0),(3,'page','page',0),(4,'hello-elementor','hello-elementor',0),(5,'Main Menu','main-menu',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

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

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','sitemanager'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:1:{s:64:\"08ea1fe94d938f3d076bca492ab0befd4157dd44d4b6ff1bde6f47b2b77a2dd2\";a:4:{s:10:\"expiration\";i:1691816034;s:2:\"ip\";s:13:\"172.69.86.210\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1691643234;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','412'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"172.69.178.0\";}'),(19,1,'elementor_introduction','a:1:{s:7:\"exit_to\";b:1;}'),(20,1,'hfe-popup','dismissed'),(21,1,'header-footer-elementor-rating','delayed-notice'),(22,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(23,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(24,1,'nav_menu_recently_edited','5'),(25,1,'wp_user-settings','editor=tinymce&libraryContent=browse'),(26,1,'wp_user-settings-time','1668510454'),(27,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2022-11-15T11:02:53.583Z\";}'),(28,1,'closedpostboxes_dashboard','a:1:{i:0;s:21:\"dashboard_quick_press\";}'),(29,1,'metaboxhidden_dashboard','a:0:{}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

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

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'sitemanager','$P$Bx69DiPFgYch4N5z234RipjsFZDPph1','sitemanager','wp@dxpsites.com','https://weinfluence.saturnwp.link','2022-09-19 20:14:55','',0,'sitemanager');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-06-01 20:44:46